結果

問題 No.789 範囲の合計
ユーザー momoyuumomoyuu
提出日時 2024-10-06 19:20:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 948 bytes
コンパイル時間 1,314 ms
コンパイル使用メモリ 110,960 KB
実行使用メモリ 8,472 KB
最終ジャッジ日時 2024-10-06 19:20:57
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 73 ms
8,468 KB
testcase_03 AC 46 ms
7,700 KB
testcase_04 AC 70 ms
8,336 KB
testcase_05 AC 60 ms
8,472 KB
testcase_06 AC 64 ms
8,416 KB
testcase_07 AC 41 ms
7,828 KB
testcase_08 AC 54 ms
7,700 KB
testcase_09 AC 51 ms
7,828 KB
testcase_10 AC 77 ms
8,468 KB
testcase_11 AC 65 ms
8,216 KB
testcase_12 AC 66 ms
8,344 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/fenwicktree>

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin>>n;
    vector<ll> t(n),a(n),b(n);
    vector<ll> dx;
    for(int i = 0;i<n;i++){
        cin>>t[i]>>a[i]>>b[i];
        dx.push_back(a[i]);
        dx.push_back(b[i]+1);
    }
    sort(dx.begin(),dx.end());
    dx.erase(unique(dx.begin(),dx.end()),dx.end());
    int m = dx.size();
    ll ans = 0;
    atcoder::fenwick_tree<ll> bit(m);
    for(int i = 0;i<n;i++){
        if(t[i]==0){
            int ni = lower_bound(dx.begin(),dx.end(),a[i]) - dx.begin();
            bit.add(ni,b[i]);
        }else{
            int ni = lower_bound(dx.begin(),dx.end(),a[i]) - dx.begin();
            int nj = upper_bound(dx.begin(),dx.end(),b[i]) - dx.begin();
            ans += bit.sum(ni,nj);
        }
    }
    cout<<ans<<endl;
}   


0