結果

問題 No.833 かっこいい電車
ユーザー face4face4
提出日時 2019-12-08 14:35:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,150 bytes
コンパイル時間 1,164 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-12-30 09:47:47
合計ジャッジ時間 5,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
5,888 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 146 ms
6,144 KB
testcase_11 AC 193 ms
7,680 KB
testcase_12 AC 60 ms
5,248 KB
testcase_13 AC 38 ms
5,248 KB
testcase_14 AC 158 ms
7,680 KB
testcase_15 AC 78 ms
5,760 KB
testcase_16 AC 63 ms
6,784 KB
testcase_17 AC 54 ms
5,248 KB
testcase_18 AC 181 ms
6,272 KB
testcase_19 AC 60 ms
6,272 KB
testcase_20 AC 16 ms
5,248 KB
testcase_21 AC 145 ms
5,248 KB
testcase_22 AC 105 ms
8,192 KB
testcase_23 AC 69 ms
6,528 KB
testcase_24 AC 104 ms
7,808 KB
testcase_25 AC 169 ms
5,888 KB
testcase_26 AC 74 ms
6,784 KB
testcase_27 AC 120 ms
6,144 KB
testcase_28 AC 84 ms
5,248 KB
testcase_29 AC 103 ms
5,504 KB
testcase_30 AC 112 ms
8,704 KB
testcase_31 AC 153 ms
5,888 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