結果
| 問題 |
No.789 範囲の合計
|
| コンテスト | |
| ユーザー |
🍮かんプリン
|
| 提出日時 | 2021-09-08 18:33:22 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,930 bytes |
| コンパイル時間 | 1,726 ms |
| コンパイル使用メモリ | 172,964 KB |
| 実行使用メモリ | 12,160 KB |
| 最終ジャッジ日時 | 2024-12-26 07:52:43 |
| 合計ジャッジ時間 | 8,489 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 RE * 13 TLE * 1 |
ソースコード
#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);
}
🍮かんプリン