結果

問題 No.789 範囲の合計
ユーザー ei1333333ei1333333
提出日時 2019-02-08 22:07:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 450 ms / 1,000 ms
コード長 658 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 206,572 KB
実行使用メモリ 24,932 KB
最終ジャッジ日時 2024-07-01 11:32:33
合計ジャッジ時間 6,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 428 ms
22,596 KB
testcase_03 AC 95 ms
6,940 KB
testcase_04 AC 450 ms
23,144 KB
testcase_05 AC 366 ms
22,496 KB
testcase_06 AC 378 ms
22,524 KB
testcase_07 AC 112 ms
6,940 KB
testcase_08 AC 353 ms
24,548 KB
testcase_09 AC 312 ms
23,144 KB
testcase_10 AC 331 ms
14,496 KB
testcase_11 AC 417 ms
24,804 KB
testcase_12 AC 393 ms
24,932 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;

template< class T >
struct BinaryIndexedTree {
  unordered_map< int, T > data;

  BinaryIndexedTree() {
  }

  T sum(int k) {
    T ret = 0;
    for(++k; k > 0; k -= k & -k) {
      if(data.count(k)) ret += data[k];
    }
    return (ret);
  }

  void add(int k, T x) {
    for(++k; k <= (int) (1e9+5); k += k & -k) data[k] += x;
  }
};

int main() {
  int Q;
  cin >> Q;
  BinaryIndexedTree< int64 > bit;
  int64 add = 0;
  while(Q--) {
    int t, x, y;
    cin >> t >> x >> y;
    if(t == 0) bit.add(x, y);
    else add += bit.sum(y) - bit.sum(x - 1);
  }
  cout << add << endl;
}

0