結果

問題 No.833 かっこいい電車
ユーザー veqccveqcc
提出日時 2019-05-24 23:39:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 1,750 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 113,592 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-07-02 03:48:06
合計ジャッジ時間 3,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
6,528 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 64 ms
6,784 KB
testcase_11 AC 87 ms
8,960 KB
testcase_12 AC 26 ms
5,760 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 73 ms
9,088 KB
testcase_15 AC 35 ms
6,400 KB
testcase_16 AC 32 ms
7,168 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 72 ms
6,912 KB
testcase_19 AC 30 ms
6,912 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 51 ms
5,376 KB
testcase_22 AC 54 ms
9,472 KB
testcase_23 AC 34 ms
7,040 KB
testcase_24 AC 52 ms
9,216 KB
testcase_25 AC 65 ms
6,400 KB
testcase_26 AC 38 ms
8,320 KB
testcase_27 AC 50 ms
6,784 KB
testcase_28 AC 32 ms
5,376 KB
testcase_29 AC 42 ms
6,272 KB
testcase_30 AC 62 ms
9,984 KB
testcase_31 AC 44 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <random>
#include <bitset>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
using namespace std;
const ll MOD = 1000000007LL;

struct SegmentTree {
private:
    int n;
    vector <ll> node;

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

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

    ll getsum(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 vl = getsum(a, b, 2*k+1, l, (l+r)/2);
        ll vr = getsum(a, b, 2*k+2, (l+r)/2, r);
        return vl + vr;
    }
};

int main() {
    cin.sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int n, Q;
    cin >> n >> Q;

    SegmentTree seg(n);
    for (int i = 0; i < n; i++) {
        int A;
        cin >> A;
        seg.add(i, A);
    }

    set <int> st;
    for (int i = 0; i <= n; i++) st.insert(i);


    for (int q = 0; q < Q; q++) {
        int query, x;
        cin >> query >> x;

        if (query == 1) {
            st.erase(x);
        } else if (query == 2) {
            st.insert(x);
        } else if (query == 3) {
            seg.add(x - 1, 1);
        } else {
            auto itr = st.lower_bound(x);
            int r = *itr;
            itr--;
            int l = *itr;
            cout << seg.getsum(l, r) << "\n";
        }
    }

    return 0;
}
0