結果

問題 No.833 かっこいい電車
ユーザー face4face4
提出日時 2019-12-08 14:35:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 1,150 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-06-09 16:23:16
合計ジャッジ時間 4,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
6,016 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 111 ms
6,272 KB
testcase_11 AC 146 ms
7,808 KB
testcase_12 AC 48 ms
6,940 KB
testcase_13 AC 31 ms
6,940 KB
testcase_14 AC 114 ms
7,680 KB
testcase_15 AC 58 ms
6,944 KB
testcase_16 AC 48 ms
6,940 KB
testcase_17 AC 40 ms
6,940 KB
testcase_18 AC 127 ms
6,944 KB
testcase_19 AC 46 ms
6,940 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 104 ms
6,940 KB
testcase_22 AC 79 ms
8,192 KB
testcase_23 AC 53 ms
6,940 KB
testcase_24 AC 80 ms
7,808 KB
testcase_25 AC 121 ms
6,940 KB
testcase_26 AC 56 ms
6,944 KB
testcase_27 AC 87 ms
6,940 KB
testcase_28 AC 65 ms
6,944 KB
testcase_29 AC 77 ms
6,940 KB
testcase_30 AC 91 ms
8,704 KB
testcase_31 AC 122 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct BIT{
    int n;
    vector<ll> v;

    BIT(int x) : n(x){
        v.resize(n+1, 0);
    }

    void add(int x, int val){
        while(x <= n){
            v[x] += val;
            x += x&-x;
        }
    }

    ll query(int x){
        ll ret = 0;
        while(x > 0){
            ret += v[x];
            x -= x&-x;
        }
        return ret;
    }
};

int main(){
    int n, q;
    cin >> n >> q;
    BIT bit(n);
    for(int i = 0; i < n; i++){
        int x;  cin >> x;
        bit.add(i+1, x);
    }
    set<int> fr;
    for(int i = 1; i <= n+1; i++) fr.insert(i);
    while(q-- > 0){
        int a, b;
        cin >> a >> b;
        if(a == 1){
            if(fr.count(b+1)){
                fr.erase(b+1);
            }
        }else if(a == 2){
            if(fr.count(b+1)==0){
                fr.insert(b+1);
            }
        }else if(a == 3){
            bit.add(b, 1);
        }else if(a == 4){
            cout << bit.query(*(fr.upper_bound(b))-1) - bit.query(*(--fr.upper_bound(b))-1) << endl;
        }
    }
    return 0;
}
0