結果

問題 No.833 かっこいい電車
ユーザー pekempeypekempey
提出日時 2019-05-25 16:40:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-07-02 03:53:18
合計ジャッジ時間 4,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 125 ms
6,944 KB
testcase_11 AC 161 ms
7,680 KB
testcase_12 AC 50 ms
6,940 KB
testcase_13 AC 35 ms
6,944 KB
testcase_14 AC 135 ms
7,680 KB
testcase_15 AC 66 ms
6,944 KB
testcase_16 AC 55 ms
6,944 KB
testcase_17 AC 44 ms
6,944 KB
testcase_18 AC 146 ms
6,940 KB
testcase_19 AC 53 ms
6,944 KB
testcase_20 AC 14 ms
6,940 KB
testcase_21 AC 117 ms
6,940 KB
testcase_22 AC 93 ms
8,192 KB
testcase_23 AC 60 ms
6,940 KB
testcase_24 AC 91 ms
7,808 KB
testcase_25 AC 141 ms
6,940 KB
testcase_26 AC 64 ms
6,940 KB
testcase_27 AC 99 ms
6,944 KB
testcase_28 AC 71 ms
6,944 KB
testcase_29 AC 85 ms
6,940 KB
testcase_30 AC 98 ms
8,704 KB
testcase_31 AC 136 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <set>

using namespace std;

struct BIT {
  vector<long long> S;

  BIT(int n) : S(n + 1) {}

  void add(int k, long long v) {
    for (int i = k + 1; i < S.size(); i += i & -i) {
      S[i] += v;
    }
  }

  long long sum(int k) {
    long long res = 0;
    for (int i = k; i > 0; i -= i & -i) {
      res += S[i];
    }
    return res;
  }
};


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, x);
  }
  set<int> st;
  for (int i = 0; i <= n; i++) {
    st.insert(i);
  }
  while (q--) {
    int type, x;
    cin >> type >> x;
    x--;
    if (type == 1) {
      st.erase(x+1);
    } else if (type == 2) {
      st.insert(x+1);
    } else if (type == 3) {
      bit.add(x, 1);
    } else {
      int r = *st.upper_bound(x);
      int l = *prev(st.upper_bound(x));
      cout << bit.sum(r) - bit.sum(l) << '\n';
    }
  }
}
0