結果
問題 | No.2935 Division Into 3 (Mex Edition) |
ユーザー | askr58 |
提出日時 | 2024-10-13 05:13:44 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,770 bytes |
コンパイル時間 | 5,777 ms |
コンパイル使用メモリ | 321,416 KB |
実行使用メモリ | 416,524 KB |
最終ジャッジ日時 | 2024-10-13 05:14:51 |
合計ジャッジ時間 | 67,577 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | TLE | - |
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>; int d,w,n,m=100001; ll op(ll x,ll y){ return min(x%m,y%m)+min(x/m%m,y/m%m)*m+min(x/m/m,y/m/m)*m*m; } ll e(){ return n*m*m+n*m+n;; } bool F(ll x){ if(x==e())return true; if(w==0)return x%m>=d; else if(w==1) return x/m%m>=d; else return x/m/m>=d; } int main() { 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<ll,op,e>> stv((n+b)/b); stv[0]=segtree<ll,op,e>(vector<ll>(n+1,0)); for(int i=1;i<(n+b)/b;i++){ stv[i]=stv[i-1]; for(int j=(i-1)*b;j<min(n,i*b);j++){ ll t=stv[i].get(a[j]); ll new_t=t/m%m*m*m+t%m*m+j+1; stv[i].set(a[j],new_t); } } ll key=0; int q; cin>>q; while(q--){ ll x,y; cin>>x>>y; x^=key;y^=key; x--; while(x>=n){ } int p=y/b; vector<pair<int,ll>> rec; set<int> s; for(int i=p*b;i<y;i++){ ll t=stv[p].get(a[i]); if(!s.count(a[i])) rec.push_back(make_pair(a[i],t)); s.insert(a[i]); ll new_t=t/m%m*m*m+t%m*m+i+1; stv[p].set(a[i],new_t); } int ans=0; for(int i=0;i<3;i++){ d=x+1; w=i; if(!F(e())){ while(1){ } } 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; }