結果
問題 | No.789 範囲の合計 |
ユーザー | baLoon8128 |
提出日時 | 2022-09-02 23:59:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 175 ms / 1,000 ms |
コード長 | 2,951 bytes |
コンパイル時間 | 3,374 ms |
コンパイル使用メモリ | 231,292 KB |
実行使用メモリ | 34,816 KB |
最終ジャッジ日時 | 2024-04-27 23:19:17 |
合計ジャッジ時間 | 5,822 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 172 ms
28,672 KB |
testcase_03 | AC | 74 ms
6,940 KB |
testcase_04 | AC | 175 ms
31,872 KB |
testcase_05 | AC | 154 ms
27,520 KB |
testcase_06 | AC | 158 ms
28,800 KB |
testcase_07 | AC | 68 ms
6,940 KB |
testcase_08 | AC | 157 ms
34,816 KB |
testcase_09 | AC | 151 ms
31,872 KB |
testcase_10 | AC | 154 ms
20,224 KB |
testcase_11 | AC | 140 ms
28,160 KB |
testcase_12 | AC | 136 ms
28,288 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using vi = vector<int>; using vvi = vector<vector<int>>; using pii = pair<int, int>; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) #define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i) namespace baLoon { struct S { ll val; S() : val(0) {} S(ll val) : val(val){}; S &operator*=(const S &x) { val += x.val; return *this; } S operator*(const S &x) const { S ret = *this; ret *= x; return ret; } }; struct OnlineSegTree { OnlineSegTree(int lowerbound, int upperbound) : lowerbound(lowerbound), upperbound(upperbound), root(nullptr) {} void set(int x, const S &val) { assert(lowerbound <= x && x < upperbound); set(root, lowerbound, upperbound, x, val); } S get(int x) { assert(lowerbound <= x && x < upperbound); return get(root, lowerbound, upperbound, x); } S prod(int l, int r) { assert(lowerbound <= l && l <= r && r <= upperbound); return prod(root, lowerbound, upperbound, l, r); } private: struct node { node(S val) : val(val), left(nullptr), right(nullptr) {} S val; node *left; node *right; }; int lowerbound; int upperbound; node *root; void set(node *&v, int a, int b, const int x, const S &val) { if (!v) v = new node(S()); if (b - a == 1) { v->val = val; } else { int c = (a + b) / 2; if (x < c) { set(v->left, a, c, x, val); } else { set(v->right, c, b, x, val); } v->val = S(); if (v->left) v->val *= v->left->val; if (v->right) v->val *= v->right->val; } } S get(node *&v, int a, int b, int x) { if (!v) return S(); if (b - a > 1) { int c = (a + b) / 2; if (x < c) { return get(v->left, a, c, x); } else { return get(v->right, c, b, x); } } return v->val; } S prod(node *&v, int a, int b, int l, int r) { if (!v || b <= l || r <= a) return S(); if (l <= a && b <= r) return v->val; int c = (a + b) / 2; return prod(v->left, a, c, l, r) * prod(v->right, c, b, l, r); } }; } // namespace baLoon int main() { baLoon::OnlineSegTree seg(0, 1001001001); int n; cin >> n; baLoon::S ret = baLoon::S(); while (n--) { int type; cin >> type; if (type == 0) { int x, y; cin >> x >> y; seg.set(x, seg.get(x) * baLoon::S(y)); } if (type == 1) { int l, r; cin >> l >> r; ret *= seg.prod(l, r + 1); } } cout << ret.val << endl; return 0; }