結果
問題 | No.631 Noelちゃんと電車旅行 |
ユーザー | fura |
提出日時 | 2020-10-17 17:21:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 1,333 bytes |
コンパイル時間 | 2,181 ms |
コンパイル使用メモリ | 206,140 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-10-02 09:48:27 |
合計ジャッジ時間 | 5,000 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
5,248 KB |
testcase_01 | AC | 95 ms
6,272 KB |
testcase_02 | AC | 96 ms
6,144 KB |
testcase_03 | AC | 95 ms
6,144 KB |
testcase_04 | AC | 94 ms
6,272 KB |
testcase_05 | AC | 96 ms
6,272 KB |
testcase_06 | AC | 43 ms
5,248 KB |
testcase_07 | AC | 29 ms
5,248 KB |
testcase_08 | AC | 70 ms
6,144 KB |
testcase_09 | AC | 81 ms
5,248 KB |
testcase_10 | AC | 60 ms
6,016 KB |
testcase_11 | AC | 52 ms
5,248 KB |
testcase_12 | AC | 67 ms
6,144 KB |
testcase_13 | AC | 58 ms
5,248 KB |
testcase_14 | AC | 28 ms
5,248 KB |
testcase_15 | AC | 57 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; using lint=long long; template<class T> class starry_sky_tree{ int sz; vector<T> seg; void maintain(int u){ if(1<=u && u<sz){ T mx=std::max(seg[2*u],seg[2*u+1]); seg[u]+=mx; seg[2*u ]-=mx; seg[2*u+1]-=mx; } } T max(int l,int r,int a,int b,int u,T cum)const{ if(b<=l || r<=a) return numeric_limits<T>::min(); if(l<=a && b<=r) return cum+seg[u]; T lmax=max(l,r,a,(a+b)/2,2*u ,cum+seg[u]); T rmax=max(l,r,(a+b)/2,b,2*u+1,cum+seg[u]); return std::max(lmax,rmax); } public: starry_sky_tree(int n){ for(sz=1;sz<n;sz<<=1); seg.assign(2*sz,T()); } void add(int l,int r,const T& val){ int a,b; for(a=l+sz,b=r+sz;a<b;a>>=1,b>>=1){ if(a&1){ seg[a]+=val; a++; } if(b&1){ b--; seg[b]+=val; } maintain((a-1)>>1); maintain(b>>1); } for(int u=a-1;u>=1;u>>=1) maintain(u); for(int u= b ;u>=1;u>>=1) maintain(u); } T max(int l,int r)const{ return max(l,r,0,sz,1,0); } }; int main(){ int n; scanf("%d",&n); vector<lint> a(n-1); rep(i,n-1) scanf("%lld",&a[i]); starry_sky_tree<lint> SS(n-1); rep(i,n-1) SS.add(i,i+1,a[i]+3*(n-i-1)); int q; scanf("%d",&q); rep(_,q){ int l,r; lint d; scanf("%d%d%lld",&l,&r,&d); l--; SS.add(l,r,d); printf("%lld\n",SS.max(0,n-1)); } return 0; }