結果

問題 No.2935 Division Into 3 (Mex Edition)
ユーザー askr58askr58
提出日時 2024-10-13 05:58:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,762 bytes
コンパイル時間 7,897 ms
コンパイル使用メモリ 352,808 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-10-13 05:58:43
合計ジャッジ時間 14,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 TLE -
testcase_04 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using mint=modint998244353;
const int b=550;
using ar=array<int,3>;
int d,w;
ll op(ll x,ll y){
    return min(x,y);
}
ll e(){
    return 1e9;
}

bool F(ll x){
    return x>=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<vector<segtree<ll,op,e>>> stv((n+b)/b,vector<segtree<ll,op,e>>(3));
    for(int i=0;i<3;i++)stv[0][i]=segtree<ll,op,e>(vector<ll>(n+1,-1));
    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++){
            stv[i][2].set(a[j],stv[i][1].get(a[j]));
            stv[i][1].set(a[j],stv[i][0].get(a[j]));
            stv[i][0].set(a[j],j);
        }
    }
    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<ll> rec;
        for(int i=p*b;i<y;i++){
            rec.push_back(stv[p][2].get(a[i]));
            stv[p][2].set(a[i],stv[p][1].get(a[i]));
            stv[p][1].set(a[i],stv[p][0].get(a[i]));
            stv[p][0].set(a[i],i);
        }
        int ans=0;
        for(int i=0;i<3;i++){
            d=x;
            ans+=min((ll)(stv[p][i].max_right<F>(0)),y-x-2);
        }
        cout<<ans<<endl;
        key=ans;
        reverse(rec.begin(),rec.end());
        for(int i=y-1;i>=p*b;i--){
            int j=y-1-i;
            stv[p][0].set(a[i],stv[p][1].get(a[i]));
            stv[p][1].set(a[i],stv[p][2].get(a[i]));
            stv[p][2].set(a[i],rec[j]);
        }
    }

    
    return 0;
}
0