結果
問題 | No.789 範囲の合計 |
ユーザー | 🍮かんプリン |
提出日時 | 2021-09-08 18:33:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,930 bytes |
コンパイル時間 | 1,500 ms |
コンパイル使用メモリ | 173,148 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 21:55:36 |
合計ジャッジ時間 | 3,971 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; template <class S, S (*op)(S, S), S (*e)()> class dynamic_segtree { public: dynamic_segtree(size_t n) : n(n), root(nullptr) {} void set(size_t p, S x) { assert(p < n); set(root, 0, n, p, x); } S get(size_t p) const { assert(p < n); return get(root, 0, n, p); } S prod(size_t l, size_t r) const { assert(l <= r && r <= n); return prod(root, 0, n, l, r); } S all_prod() const { return root ? root->product : e(); } private: struct node; using node_ptr = unique_ptr<node>; struct node { size_t index; S value, product; node_ptr left, right; node(size_t index, S value) : index(index), value(value), product(value), left(nullptr), right(nullptr) {} void update() { product = op(op(left ? left->product : e(), value), right ? right->product : e()); } }; const size_t n; node_ptr root; void set(node_ptr& t, size_t a, size_t b, size_t p, S x) const { if (!t) { t = make_unique<node>(p, x); return; } if (t->index == p) { t->value = x; t->update(); return; } size_t c = (a + b) >> 1; if (p < c) { if (t->index < p) swap(t->index, p), swap(t->value, x); set(t->left, a, c, p, x); } else { if (p < t->index) swap(p, t->index), swap(x, t->value); set(t->right, c, b, p, x); } t->update(); } S get(const node_ptr& t, size_t a, size_t b, size_t p) const { if (!t) return e(); if (t->index == p) return t->value; size_t c = (a + b) >> 1; if (p < c) return get(t->left, a, c, p); else return get(t->right, c, b, p); } S prod(const node_ptr& t, size_t a, size_t b, size_t l, size_t r) const { if (!t || b <= l || r <= a) return e(); if (l <= a && b <= r) return t->product; size_t c = (a + b) >> 1; S result = prod(t->left, a, c, l, r); if (l <= t->index && t->index < r) result = op(result, t->value); return op(result, prod(t->right, c, b, l, r)); } }; using S = ll; S op(S a, S b) { return a + b; } S e() { return 0; } int main() { constexpr int n = 1000000001; dynamic_segtree<S, op, e> seg(n); int q; scanf("%d",&q); long long ans = 0; while (q--) { int type; scanf("%d",&type); if (type == 0) { int x; int y; scanf("%d",&x,&y); seg.set(x, seg.get(x) + y); } else { int l, r; scanf("%d",&l,&r); ans += seg.prod(l, r + 1); } } printf("%lld\n",ans); }