結果

問題 No.876 Range Compress Query
ユーザー noshi91noshi91
提出日時 2020-03-26 23:15:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,451 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 75,940 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-10 15:47:43
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 184 ms
6,940 KB
testcase_12 AC 152 ms
6,940 KB
testcase_13 AC 151 ms
6,944 KB
testcase_14 AC 183 ms
6,940 KB
testcase_15 AC 128 ms
6,948 KB
testcase_16 AC 176 ms
6,940 KB
testcase_17 AC 174 ms
6,940 KB
testcase_18 AC 186 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cstdint>

struct segtree{
  std::vector<int> tree;

  segtree(int n) : tree(n * 2, 0) {}

  int size() const {return tree.size() / 2;}

  void set(int i, int x) {
    i += size();
    tree[i] = x;
    while (i != 1) {
      i /= 2;
      tree[i] = tree[i * 2] + tree[i * 2 + 1];
    }
  }

  int get(int l, int r) const {
    l += size();
    r += size();
    int ret = 0;
    while (l != r) {
      if (l % 2 != 0) {
        ret += tree[l];
        l += 1;
      }
      l /= 2;
      if (r % 2 != 0) {
        r -= 1;
        ret += tree[r];
      }
      r /= 2;
    }
    return ret;
  }
};

int main() {
  using i64 = std::int_fast64_t;

  int n, q;
  std::cin >> n >> q;
  std::vector<i64> d(n + 1);
  {
    i64 pre = 0;
    for (int i = 0; i != n; i += 1) {
      i64 a;
      std::cin >> a;
      d[i] = a - pre;
      pre = a;
    }
    d[n] = -pre;
  }
  segtree seg(n + 1);

  const auto set = [&](int i){
    seg.set(i, d[i] == 0 ? 0 : 1);
  };

  for (int i = 0; i != n + 1; i += 1) {
    set(i);
  }

  for (int i = 0; i != q; i += 1) {
    int c;
    std::cin >> c;
    switch (c) {
    case 1: {
      int l, r;
      i64 x;
      std::cin >> l >> r >> x;
      l -= 1;
      d[l] += x;
      d[r] -= x;
      set(l);
      set(r);
    } break;
    case 2: {
      int l, r;
      std::cin >> l >> r;
      l -= 1;
      std::cout << seg.get(l + 1, r) + 1 << "\n";
    } break;
    }
  }
}
0