結果
問題 | No.2935 Division Into 3 (Mex Edition) |
ユーザー | askr58 |
提出日時 | 2024-10-13 03:56:29 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,681 bytes |
コンパイル時間 | 5,187 ms |
コンパイル使用メモリ | 324,500 KB |
実行使用メモリ | 604,232 KB |
最終ジャッジ日時 | 2024-10-13 03:56:49 |
合計ジャッジ時間 | 19,688 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | TLE | - |
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=500; using ar=array<int,3>; 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}); } 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++){ int l=0,r=n+1; while(l+1<r){ int c=(l+r)/2; if((stv[p].prod(0,c))[i]<x)r=c; else l=c; } ans+=l; } cout<<ans<<endl; key=ans; for(auto[x,t]:rec){ stv[p].set(x,t); } } return 0; }