結果
問題 | No.2697 Range LIS Query |
ユーザー | kotatsugame |
提出日時 | 2024-03-22 21:56:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 222 ms / 10,000 ms |
コード長 | 1,119 bytes |
コンパイル時間 | 927 ms |
コンパイル使用メモリ | 86,388 KB |
実行使用メモリ | 26,496 KB |
最終ジャッジ日時 | 2024-09-30 11:26:59 |
合計ジャッジ時間 | 4,074 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 7 ms
5,248 KB |
testcase_04 | AC | 7 ms
5,248 KB |
testcase_05 | AC | 7 ms
5,248 KB |
testcase_06 | AC | 200 ms
26,360 KB |
testcase_07 | AC | 209 ms
26,240 KB |
testcase_08 | AC | 198 ms
26,212 KB |
testcase_09 | AC | 138 ms
26,496 KB |
testcase_10 | AC | 141 ms
26,368 KB |
testcase_11 | AC | 138 ms
26,240 KB |
testcase_12 | AC | 118 ms
25,488 KB |
testcase_13 | AC | 132 ms
24,192 KB |
testcase_14 | AC | 176 ms
24,448 KB |
testcase_15 | AC | 215 ms
26,368 KB |
testcase_16 | AC | 222 ms
26,356 KB |
testcase_17 | AC | 216 ms
26,344 KB |
ソースコード
#include<iostream> #include<array> #include<cassert> #include<atcoder/lazysegtree> using namespace std; using dat=array<array<int,4>,4>; dat op(dat a,dat b) { dat ret={}; for(int i=0;i<4;i++)for(int j=i;j<4;j++)for(int k=j;k<4;k++) { ret[i][k]=max(ret[i][k],a[i][j]+b[j][k]); } ret[3][0]=a[3][0]+b[3][0]; return ret; } dat e(){return(dat){};} dat mk(int a,int len){ a--; dat ret=e(); for(int i=0;i<=a;i++)for(int j=a;j<4;j++)ret[i][j]=len; ret[3][0]=len; return ret; } dat mp(int f,dat x){ if(f!=-1) { int len=x[3][0]; return mk(f,len); } else return x; } int cmp(int f,int g){return f==-1?g:f;} int id(){return-1;} int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N;cin>>N; vector<dat>init(N); for(int i=0;i<N;i++) { int a;cin>>a; init[i]=mk(a,1); } atcoder::lazy_segtree<dat,op,e,int,mp,cmp,id>seg(init); int Q;cin>>Q; for(;Q--;) { int t,l,r;cin>>t>>l>>r;l--; if(t==1) { dat now=seg.prod(l,r); int ans=0; for(int i=0;i<4;i++)for(int j=i;j<4;j++)ans=max(ans,now[i][j]); cout<<ans<<"\n"; } else { int x;cin>>x; seg.apply(l,r,x); } } }