QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#288024#7969. 套娃raymond_7AC ✓208ms77468kbC++143.0kb2023-12-21 16:16:022023-12-21 16:16:04

Judging History

你现在查看的是最新测评结果

  • [2023-12-21 16:16:04]
  • 评测
  • 测评结果:AC
  • 用时:208ms
  • 内存:77468kb
  • [2023-12-21 16:16:02]
  • 提交

answer

#include<bits/stdc++.h>
#define pi pair<int,int>
#define N 100005
using namespace std;
void in(int &x){
    x=0;int f=1;char c=getchar();
    while((c!='-')&&(c>'9'||c<'0'))c=getchar();
    if(c=='-')f=-1,c=getchar();
    while(c<='9'&&c>='0')x=x*10+c-'0',c=getchar();
    x*=f; 
}
int t,n,m,k,x,y,xx,yy,z,w,a[1000005],b[1000005],L[500005],R[500005],res[500005];
char ss[1000005];
vector<int>g[500005];
int tot,rt[200005],ls[5000005],rs[5000005],val[5000005];
void ins(int l,int r,int &id,int q,int k){
    tot++;ls[tot]=ls[id];rs[tot]=rs[id];id=tot;
    if(l==r){val[id]=k;return;}
    int mid=(l+r)/2;
    if(q<=mid)ins(l,mid,ls[id],q,k);
    else ins(mid+1,r,rs[id],q,k);
    val[id]=min(val[ls[id]],val[rs[id]]);
}
int mex(int u,int l,int r,int x){
    if(!u||l==r)return l;
    int mid=(l+r)/2;
    if(val[ls[u]]>=x)return mex(rs[u],mid+1,r,x);
    else return mex(ls[u],l,mid,x);
}
struct node{
    int l,r;
    mutable int v;
    bool operator <(const node &a)const{return l!=a.l?l<a.l:r<a.r;}
};
set<node>s;
vector<int>Ins[200005],del[200005];
int sum[500005],siz[500005];
void pushup(int x){siz[x]=siz[x<<1]+siz[x<<1|1];}
void upd(int l,int r,int id,int q,int k){
    if(l==r){sum[id]+=k;siz[id]=(sum[id]>=1);return;}
    int mid=(l+r)/2;
    if(q<=mid)upd(l,mid,id<<1,q,k);
    else upd(mid+1,r,id<<1|1,q,k);
    pushup(id);
}
int query(int l,int r,int id){
    if(l==r)return l;
    int mid=(l+r)/2;
    if(siz[id<<1]==mid-l+1)return query(mid+1,r,id<<1|1);
    else return query(l,mid,id<<1);
}
signed main(){
    in(n);
    memset(L,-0x3f,sizeof L);memset(R,-0x3f,sizeof R);
    for(int i=1;i<=n;i++)in(a[i]),g[a[i]].push_back(i);
    for(int i=1;i<=n;i++)rt[i]=rt[i-1],ins(0,n,rt[i],a[i],i);
    for(int i=1;i<=n;i++){
        if(i==1)s.insert({1,1,0}),L[0]=R[0]=1;
        else{
            node lst=*(prev(s.end()));
            if((lst.v)==0)s.insert({lst.l,i,0}),R[0]=i,s.erase(lst);
            else s.insert({i,i,0}),L[0]=R[0]=i;
        }
        if(L[a[i]]>0){
            int l=L[a[i]],r=R[a[i]],v=a[i];
            s.erase({l,r,v});L[a[i]]=R[a[i]]=-1e9;
            while(r>=l){
                v=mex(rt[i],0,n,r);
                auto it=upper_bound(g[v].begin(),g[v].end(),r);
                if(it==g[v].begin()||(x=*(prev(it)))<l){
                    if(R[v]!=l-1){
                        s.insert({l,r,v});
                        L[v]=l;R[v]=r;
                    }
                    else{
                        s.erase({L[v],R[v],v});R[v]=r;
                        s.insert({L[v],R[v],v});
                    }
                    break;
                }
                s.insert({x+1,r,v});
                L[v]=x+1;R[v]=r;r=x;
            }
        }
        for(auto [l,r,v]:s){
            //[i-r+1,i-l+1]:v
            Ins[i-r+1].push_back(v);
            del[i-l+2].push_back(v);
        }
    }
    for(int i=1;i<=n;i++){
        for(int x:Ins[i])upd(0,N,1,x,1);
        for(int x:del[i])upd(0,N,1,x,-1);
        printf("%d ",query(0,N,1));
    }
} 

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 7ms
memory: 29688kb

input:

6
0 0 0 1 2 3

output:

2 3 4 0 0 0 

result:

ok single line: '2 3 4 0 0 0 '

Test #2:

score: 0
Accepted
time: 4ms
memory: 30128kb

input:

100
0 10 21 9 4 1 14 0 8 1 4 6 10 0 0 4 18 0 12 5 2 5 15 1 6 2 0 4 14 5 1 2 23 1 8 1 24 8 8 9 5 2 12 2 3 7 6 11 12 12 6 12 4 4 5 0 7 4 9 12 1 7 4 7 12 2 10 2 4 8 7 1 4 0 13 9 13 2 2 3 9 14 7 9 15 10 10 6 2 12 3 11 6 3 4 7 9 6 11 1

output:

2 2 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 2 2 2 2 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 

result:

ok single line: '2 2 3 4 4 4 4 4 4 4 4 4 4 4 4 ... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 '

Test #3:

score: 0
Accepted
time: 208ms
memory: 76044kb

input:

100000
127 145 474 139 36 135 75 670 76 433 206 214 283 56 214 440 147 280 244 190 181 565 31 550 261 93 526 404 125 390 17 552 5 364 53 337 52 506 277 279 15 248 46 61 826 69 166 297 171 289 150 175 111 151 317 342 166 13 199 152 308 19 156 347 205 166 45 115 177 235 422 425 109 4 658 232 347 370 4...

output:

2 2 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 ...

result:

ok single line: '2 2 3 3 3 3 3 3 3 3 4 4 4 4 4 ... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 '

Test #4:

score: 0
Accepted
time: 207ms
memory: 77468kb

input:

100000
360 34 204 156 183 404 21 3 20 122 170 193 347 144 51 464 94 265 190 88 284 437 538 392 661 397 839 208 83 191 42 16 194 515 374 53 617 502 307 504 348 175 219 63 2 130 289 223 135 440 284 189 104 142 87 117 316 218 301 14 87 405 293 489 763 197 678 196 173 96 257 17 190 525 243 161 220 178 8...

output:

2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 ...

result:

ok single line: '2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 ... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 '

Test #5:

score: 0
Accepted
time: 207ms
memory: 74268kb

input:

100000
322 408 29 271 168 161 265 412 230 177 325 60 331 226 298 143 343 83 274 706 47 234 287 46 329 248 174 351 235 38 172 171 251 355 274 307 468 11 222 309 666 137 18 440 1209 7 103 354 496 336 183 602 240 316 442 253 32 486 308 18 115 125 110 65 268 502 148 793 91 759 313 269 31 63 250 90 143 6...

output:

2 2 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 ...

result:

ok single line: '2 2 3 3 3 3 3 3 3 4 4 4 4 4 4 ... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 '

Test #6:

score: 0
Accepted
time: 36ms
memory: 56308kb

input:

100000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

result:

ok single line: '0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 '

Test #7:

score: 0
Accepted
time: 62ms
memory: 63052kb

input:

100000
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100...

output:

2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

result:

ok single line: '2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 '

Test #8:

score: 0
Accepted
time: 55ms
memory: 58176kb

input:

100000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 10...

result:

ok single line: '2 3 4 5 6 7 8 9 10 11 12 13 14... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 '