結果
問題 | No.789 範囲の合計 |
ユーザー | Suu0313 |
提出日時 | 2021-04-06 15:51:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 975 ms / 1,000 ms |
コード長 | 1,319 bytes |
コンパイル時間 | 2,357 ms |
コンパイル使用メモリ | 211,664 KB |
実行使用メモリ | 45,812 KB |
最終ジャッジ日時 | 2024-06-11 06:36:47 |
合計ジャッジ時間 | 11,356 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 953 ms
42,356 KB |
testcase_03 | AC | 180 ms
5,376 KB |
testcase_04 | AC | 975 ms
42,872 KB |
testcase_05 | AC | 812 ms
42,344 KB |
testcase_06 | AC | 805 ms
42,424 KB |
testcase_07 | AC | 326 ms
5,376 KB |
testcase_08 | AC | 778 ms
45,812 KB |
testcase_09 | AC | 742 ms
42,872 KB |
testcase_10 | AC | 550 ms
25,572 KB |
testcase_11 | AC | 633 ms
42,348 KB |
testcase_12 | AC | 663 ms
42,344 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; template<typename T, typename U = int> struct DynamicSegmentTree{ using OP = function<T(T,T)>; U n, sz; unordered_map<U, T> node; T t; OP op; DynamicSegmentTree(U n, T t, OP op): n(n), t(t), op(op){ sz = 1; while(sz < n) sz <<= 1; } void update(U k, T x){ k += sz; node[k] = x; while(k >>= 1){ T l = node.find(2*k)==node.end() ? t : node[2*k]; T r = node.find(2*k+1)==node.end() ? t : node[2*k+1]; node[k] = op(l, r); } } T query(int a, int b){ T L = t, R = t; for(a += sz, b += sz; a < b; a >>= 1, b >>= 1) { if(a & 1){ T x = node.find(a)==node.end() ? t : node[a]; L = op(L, x); a++; } if(b & 1){ --b; T x = node.find(b)==node.end() ? t : node[b]; R = op(x, R); } } return op(L, R); } }; int main(){ int n = 1000000000, q; cin >> q; DynamicSegmentTree<int64_t, int> seg(n+1, 0, [](int64_t a, int64_t b){ return a+b; }); int64_t ans = 0; while(q--){ int t; cin >> t; if(!t){ int p, x; cin >> p >> x; auto a = seg.query(p, p+1); seg.update(p, a + x); }else{ int l, r; cin >> l >> r; auto res = seg.query(l, r+1); ans += res; } } cout << ans << endl; }