結果
問題 | No.2935 Division Into 3 (Mex Edition) |
ユーザー | askr58 |
提出日時 | 2024-10-13 04:11:37 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,627 bytes |
コンパイル時間 | 5,626 ms |
コンパイル使用メモリ | 324,040 KB |
実行使用メモリ | 750,296 KB |
最終ジャッジ日時 | 2024-10-13 04:11:57 |
合計ジャッジ時間 | 17,340 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 4,581 ms
243,916 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using namespace std; using ll=long long; using mint=modint998244353; const int b=400; using ar=array<int,3>; int d,w; ar op(ar x,ar y){ x[0]=min(x[0],y[0]); x[1]=min(x[1],y[1]); x[2]=min(x[2],y[2]); return x; } ar e(){ return ar({(int)1e9,(int)1e9,(int)1e9}); } bool F(ar x){ return x[w]>=d; } int main() { int n; cin>>n; vector<int> a(n); for(int i=0;i<n;i++)cin>>a[i]; for(int i=0;i<n;i++)a[i]=min(a[i],n); vector<segtree<ar,op,e>> stv((n+b-1)/b); stv[0]=segtree<ar,op,e>(vector<ar>(n+1,{-1,-1,-1})); for(int i=1;i<(n+b-1)/b;i++){ stv[i]=stv[i-1]; for(int j=(i-1)*b;j<i*b;j++){ ar t=stv[i].get(a[j]); t[2]=t[1]; t[1]=t[0]; t[0]=j; stv[i].set(a[j],t); } } ll key=0; int q; cin>>q; while(q--){ ll x,y; cin>>x>>y; x^=key;y^=key; x--; int p=y/b; vector<pair<int,ar>> rec; set<int> s; for(int i=p*b;i<y;i++){ ar t=stv[p].get(a[i]); if(!s.count(a[i])) rec.push_back(make_pair(a[i],t)); s.insert(a[i]); t[2]=t[1]; t[1]=t[0]; t[0]=i; stv[p].set(a[i],t); } int ans=0; for(int i=0;i<3;i++){ d=x; w=i; ans+=min((ll)(stv[p].max_right<F>(0)),y-x-2); } cout<<ans<<endl; key=ans; for(auto[x,t]:rec){ stv[p].set(x,t); } } return 0; }