結果
問題 | No.789 範囲の合計 |
ユーザー | ei1333333 |
提出日時 | 2019-02-08 22:06:11 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 612 bytes |
コンパイル時間 | 1,951 ms |
コンパイル使用メモリ | 206,824 KB |
実行使用メモリ | 56,960 KB |
最終ジャッジ日時 | 2024-06-28 19:13:52 |
合計ジャッジ時間 | 7,743 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 685 ms
51,328 KB |
testcase_03 | AC | 76 ms
5,376 KB |
testcase_04 | AC | 634 ms
49,152 KB |
testcase_05 | AC | 427 ms
43,520 KB |
testcase_06 | AC | 463 ms
44,160 KB |
testcase_07 | AC | 65 ms
5,376 KB |
testcase_08 | AC | 334 ms
26,880 KB |
testcase_09 | AC | 296 ms
24,832 KB |
testcase_10 | AC | 772 ms
56,960 KB |
testcase_11 | AC | 573 ms
54,400 KB |
testcase_12 | AC | 577 ms
54,528 KB |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using int64 = long long; template< class T > struct BinaryIndexedTree { map< int, T > data; BinaryIndexedTree() { } T sum(int k) { T ret = 0; for(++k; k > 0; k -= k & -k) ret += data[k]; return (ret); } void add(int k, T x) { for(++k; k <= (int) (1e9); k += k & -k) data[k] += x; } }; int main() { int Q; cin >> Q; BinaryIndexedTree< int > 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; }