結果
問題 | No.631 Noelちゃんと電車旅行 |
ユーザー | iqueue02 |
提出日時 | 2019-12-25 15:55:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,559 bytes |
コンパイル時間 | 1,863 ms |
コンパイル使用メモリ | 172,632 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-09-25 03:32:15 |
合計ジャッジ時間 | 7,691 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; template <typename T> struct LazySegmentTree { int n; vector<T> node, lazy; T f(T a, T b) {return max(a, b);} LazySegmentTree (int sz, T init = 0) { n = 1; while (n < sz) n <<= 1; node.assign(2*n, init); lazy.assign(2*n,-1); } void eval (int k) { if (lazy[k] == -1) return ; node[k] += lazy[k]; if (k < n) { lazy[2*k+1] = lazy[k]; lazy[2*k+2] = lazy[k]; } lazy[k] = -1; } void update(int a, int b, T x, int k = 0, int l = 0, int r = -1) { eval(k); if (r < 0) r = n; if (b <= l || r <= a) return ; if (a <= l && r <= b) { lazy[k] = x; eval(k); } else { update(a, b, x, 2*k+1, l, (r+l)/2); update(a, b, x, 2*k+2, (r+l)/2, r); node[k] = f(node[2*k+1], node[2*k+2]); } } T query(int a, int b, int k = 0, int l = 0, int r = -1) { eval(k); if (r < 0) r = n; if (r <= a || b <= l) return 0; if (a <= l && r <= b) return node[k]; T vl = query(a, b, 2*k+1, l, (l+r)/2); T vr = query(a, b, 2*k+2, (l+r)/2, r); return f(vl, vr); } }; int main(){ int n; cin >> n; n--; LazySegmentTree<ll> seg(n); rep(i,n) { ll t; cin >> t; seg.update(i,i+1,t + 3 * (n-i)); } int m; cin >> m; rep(i,m) { int l, r; ll d; cin >> l >> r >> d; seg.update(l-1,r,d); cout << seg.query(0,n) << endl; } return 0; }