結果
問題 | No.2697 Range LIS Query |
ユーザー | nouka28 |
提出日時 | 2024-02-03 16:24:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 476 ms / 10,000 ms |
コード長 | 1,219 bytes |
コンパイル時間 | 4,038 ms |
コンパイル使用メモリ | 273,656 KB |
実行使用メモリ | 28,288 KB |
最終ジャッジ日時 | 2024-09-28 12:33:59 |
合計ジャッジ時間 | 10,616 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 12 ms
5,376 KB |
testcase_04 | AC | 12 ms
5,376 KB |
testcase_05 | AC | 11 ms
5,376 KB |
testcase_06 | AC | 436 ms
28,160 KB |
testcase_07 | AC | 426 ms
28,220 KB |
testcase_08 | AC | 440 ms
28,160 KB |
testcase_09 | AC | 445 ms
28,160 KB |
testcase_10 | AC | 436 ms
28,160 KB |
testcase_11 | AC | 444 ms
28,204 KB |
testcase_12 | AC | 247 ms
27,264 KB |
testcase_13 | AC | 278 ms
25,856 KB |
testcase_14 | AC | 388 ms
25,984 KB |
testcase_15 | AC | 467 ms
28,160 KB |
testcase_16 | AC | 460 ms
28,160 KB |
testcase_17 | AC | 476 ms
28,288 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; const int K=4; struct S{ int length; int d[K][K]={0}; S(int length=0):length(length){} }; void expand(S &x){ for(int l=1;l<K;l++){ for(int i=0;i+l<K;i++){ x.d[i][i+l]=max(x.d[i][i+l],x.d[i+1][i+l]); x.d[i][i+l]=max(x.d[i][i+l],x.d[i][i+l-1]); } } } S op(S x,S y){ expand(x);expand(y); S z; for(int i=0;i<K;i++){ for(int j=i;j<K;j++){ for(int k=0;k<=i;k++){ z.d[k][j]=max(z.d[k][j],x.d[k][i]+y.d[i][j]); } } } z.length=x.length+y.length; return z; } S e(){ return S(); } S mapping(int f,S x){ if(f==-1)return x; x=S(x.length);x.d[f][f]=x.length;return x; } int composition(int f,int g){return (f==-1)?g:f;} int id(){return -1;} int main(){ int n;cin>>n; vector<int> a(n);for(auto &e:a){cin>>e;e--;} vector<S> s(n); for(int i=0;i<n;i++){ s[i].length=1;s[i].d[a[i]][a[i]]=1; } lazy_segtree<S,op,e,int,mapping,composition,id> seg(s); int q;cin>>q; while(q--){ int type;cin>>type; if(type==1){ int l,r;cin>>l>>r;l--; auto res=seg.prod(l,r);expand(res); cout<<res.d[0][K-1]<<endl; } if(type==2){ int l,r,x;cin>>l>>r>>x;l--;x--; seg.apply(l,r,x); } } }