結果

問題 No.789 範囲の合計
ユーザー face4face4
提出日時 2019-02-13 11:29:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 1,434 bytes
コンパイル時間 910 ms
コンパイル使用メモリ 80,360 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-09-13 09:54:04
合計ジャッジ時間 2,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 142 ms
7,276 KB
testcase_03 AC 81 ms
6,940 KB
testcase_04 AC 135 ms
7,096 KB
testcase_05 AC 127 ms
7,296 KB
testcase_06 AC 128 ms
7,276 KB
testcase_07 AC 71 ms
6,940 KB
testcase_08 AC 104 ms
6,944 KB
testcase_09 AC 101 ms
6,940 KB
testcase_10 AC 157 ms
7,288 KB
testcase_11 AC 132 ms
7,192 KB
testcase_12 AC 132 ms
7,188 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
typedef long long ll;

struct ST{
private:
    int n;
    vector<int> node;

public:
    ST(int _n){
        n = 1;
        while(n < _n)   n *= 2;
        node.resize(2*n-1, 0);
    }

    void add(int k, int x){
        k += n-1;
        node[k] += x;
        while(k > 0){
            k = (k-1)/2;
            node[k] += x;
        }
    }

    ll query(int a, int b, int k=0, int l=0, int r=-1){
        if(r < 0)   r = n;
        if(r <= a || b <= l)    return 0;
        if(a <= l && r <= b)    return node[k];
        ll lx = query(a, b, 2*k+1, l, (l+r)/2);
        ll rx = query(a, b, 2*k+2, (l+r)/2, r);
        return lx + rx;
    }
};

int main(){
    int n;
    cin >> n;

    vector<int> v;
    int a[n], b[n], c[n];
    for(int i = 0; i < n; i++){
        cin >> a[i] >> b[i] >> c[i];
        v.push_back(b[i]);
        if(a[i] == 1)   v.push_back(c[i]);
    }

    sort(v.begin(), v.end());
    v.erase(unique(v.begin(), v.end()), v.end());

    int siz = v.size();
    ST st(siz);

    auto pos = [&](int val) -> int{
        return lower_bound(v.begin(), v.end(), val)-v.begin();
    };

    ll ans = 0;
    for(int i = 0; i < n; i++){
        if(a[i] == 0){
            st.add(pos(b[i]), c[i]);
        }else if(a[i] == 1){
            ans += st.query(pos(b[i]), pos(c[i])+1);
        }
    }

    cout << ans << endl;
    
    return 0;
}
0