結果

問題 No.833 かっこいい電車
ユーザー cotton_fn_cotton_fn_
提出日時 2019-05-24 23:51:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,989 bytes
コンパイル時間 1,312 ms
コンパイル使用メモリ 121,564 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-07-02 03:49:19
合計ジャッジ時間 4,808 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
6,272 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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 125 ms
6,656 KB
testcase_11 AC 167 ms
8,320 KB
testcase_12 AC 52 ms
5,376 KB
testcase_13 AC 36 ms
5,376 KB
testcase_14 AC 136 ms
8,320 KB
testcase_15 AC 67 ms
6,144 KB
testcase_16 AC 56 ms
7,424 KB
testcase_17 AC 45 ms
5,376 KB
testcase_18 AC 148 ms
6,784 KB
testcase_19 AC 53 ms
6,784 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 118 ms
5,376 KB
testcase_22 AC 91 ms
8,832 KB
testcase_23 AC 62 ms
6,912 KB
testcase_24 AC 93 ms
8,576 KB
testcase_25 AC 143 ms
6,272 KB
testcase_26 AC 65 ms
7,296 KB
testcase_27 AC 103 ms
6,656 KB
testcase_28 AC 71 ms
5,376 KB
testcase_29 AC 86 ms
6,016 KB
testcase_30 AC 105 ms
9,472 KB
testcase_31 AC 137 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <deque>
#include <queue>
#include <array>
#include <set>
#include <map>
#include <cmath>
#include <algorithm>
#include <numeric>
#include <cassert>
#include <utility>
#include <functional>
#include <bitset>
#include <cstdint>

using namespace std;
using i64 = int64_t;
using i32 = int32_t;
template<class T, class U> void init_n(vector<T>& v, size_t n, U x) 
{ v = vector<T>(n, x); }
template<class T> void init_n(vector<T>& v, size_t n) { init_n(v, n, T()); }
template<class T> void read_n(vector<T>& v, size_t n, size_t o = 0) 
{ v = vector<T>(n+o); for (size_t i=o; i<n+o; ++i) cin >> v[i]; }
template<class T> void read_n(T a[], size_t n, size_t o = 0)
{ for (size_t i=o; i<n+o; ++i) cin >> a[i]; }
template<class T> T gabs(const T& x) { return max(x, -x); }
#define abs gabs

template<class T, class F = plus<T>>
struct Fenwick {
  i64 n;
  vector<T> c;
  F f;
  Fenwick(i64 n, F f = plus<T>(), T init = T())
    : n(n), c(n + 1, init), f(f) {}
  T sum(i64 i) {
    return i > 0 ? f(sum(i - (i & -i)), c[i]) : T();
  }
  void add(i64 i, i64 x) {
    if (i <= n) {
      c[i] = f(c[i], x);
      add(i + (i & -i), x);
    }
  }
};
template<class T, class F>
Fenwick<T, F> make_fenwick(i64 n, F f, T init = T()) {
  return Fenwick<T, F>(n, f, init);
}
i64 n, q;
vector<i64> a;
int main() {
  cin >> n >> q;
  read_n(a, n);
  Fenwick<i64> fen(n + 2);
  set<i64> st;
  for (i64 i = 1; i <= n; ++i) {
    fen.add(i, a[i - 1]);
    st.insert(i);
  }
  st.insert(n + 1);
  while (q--) {
    i64 c, x; cin >> c >> x;
    if (c <= 2) {
      auto r = st.find(x + 1);
      if (c == 1 && r != end(st)) st.erase(x + 1);
      if (c == 2 && r == end(st)) st.insert(x + 1);
    } else if (c == 3) {
      fen.add(x, 1);
    } else {
      auto r = st.lower_bound(x + 1), l = r;
      --l;
      // cout << *l << '\t' << *r << '\n';
      cout << fen.sum(*r - 1) - fen.sum(*l - 1) << '\n';
    }
  }
  return 0;
}
0