結果
問題 | No.789 範囲の合計 |
ユーザー | T1610 |
提出日時 | 2019-03-17 02:31:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,935 bytes |
コンパイル時間 | 1,743 ms |
コンパイル使用メモリ | 169,176 KB |
実行使用メモリ | 185,472 KB |
最終ジャッジ日時 | 2024-07-05 04:36:06 |
合計ジャッジ時間 | 7,071 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | MLE | - |
testcase_03 | AC | 90 ms
6,944 KB |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | AC | 84 ms
6,940 KB |
testcase_08 | AC | 264 ms
91,008 KB |
testcase_09 | AC | 243 ms
83,072 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) REP(i,0,n) #define REP(i,s,e) for(int i=(s); i<(int)(e); i++) #define repr(i, n) REPR(i, n, 0) #define REPR(i, s, e) for(int i=(int)(s-1); i>=(int)(e); i--) #define pb push_back #define all(r) r.begin(),r.end() #define rall(r) r.rbegin(),r.rend() #define fi first #define se second typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int INF = 1e9; const ll MOD = 1e9 + 7; double EPS = 1e-8; using ull = int; constexpr ll initVal = 0LL; //TODO: fix type and value constexpr ll initLazy = 0LL; //TODO: fix type and value template <typename T> struct Node { T val; T lazy; ull l, r; Node<T>* l_node = nullptr; Node<T>* r_node = nullptr; Node(ull l, ull r, const T& val = initVal) : l(l), r(r), val(val), lazy(initLazy) {} T getVal() { return val + lazy * (r - l); //TODO: fix } T f1(const T& a, const T& b) { return a+b; //TODO: fix } T f2(const T& a, const T& b) { return a+b; //TODO: fix } void push() { if(r - l > 1) { auto m = (l+r)/2; { if(l_node == nullptr) l_node = new Node(l, m); if(lazy != initLazy) l_node->lazy = f2(l_node->lazy, this->lazy); } { if(r_node == nullptr) r_node = new Node(m, r); if(lazy != initLazy) r_node->lazy = f2(r_node->lazy, this->lazy); } } val = getVal(); lazy = initLazy; } void fix() { if(r - l == 1) return; val = f1(l_node->getVal(), r_node->getVal()); } T query(ull qL, ull qR) { if(qR <= l || r <= qL) return initVal; if(qL <= l && r <= qR) return getVal(); if(r - l == 1) return getVal(); push(); T l_val = l_node->query(qL, qR), r_val = r_node->query(qL, qR); return f1(l_val, r_val); } void update(ull uL, ull uR, const T& uVal) { if(uR <= l || r <= uL) return; if(uL <= l && r <= uR) lazy = f2(lazy, uVal); else { push(); l_node->update(uL, uR, uVal); r_node->update(uL, uR, uVal); fix(); } } }; template <typename T> struct DynamicLazySegTree { Node<T> root; DynamicLazySegTree(ull l, ull r, const T& val) : root(l, r, val) {} T query(ull l, ull r) { return root.query(l, r); } void update(ull l, ull r, const T& val) { root.update(l, r, val); } }; int main(){ DynamicLazySegTree<ll> seg(0, 1e9+10, 0LL); int n; cin >> n; ll ans = 0LL; rep(i, n) { ll q, x, y; cin >> q >> x >> y; if(q == 0) seg.update(x, x+1, y); else ans += seg.query(x, y+1); } cout << ans << endl; return 0; }