This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
#include<stdlib.h>
#define N 200004
int n,a[N],t[N],q,sz[N],at[N],*eh[N],eo[N],zz[1000005];
void upd(int p,int k) { for(;p<N;p|=p+1)t[p]+=k; }
int qry(int p) {int z=0;for(;p;p&=p-1)z+=t[p-1];return z;}
void add(int p,int k) { sz[p]=k; upd(p,k); }
void rem(int p) { upd(p,-sz[p]); }
int grp(int x)
{
if(x<=0)return -1;
int p=0,v=0;
for(int j=1<<20;j>0;j>>=1) if(p+j<=N&&v+t[p+j-1]<x)p+=j,v+=t[p-1];
return p;
}
void append(int i,int j)
{
int o=eo[i]++;
if(o>=2&&(o&o-1)==0)eh[i]=(int*)realloc(eh[i],2*o*sizeof**eh);
eh[i][o]=j;
}
void shuffle()
{
int g1=grp(n/2),g2=grp(n/2+1);
if(g1!=g2)return;
int rl=qry(g1);
int st=at[g1];
int md=n/2-rl+at[g1];
int ed=at[g1]+sz[g1];
for(int l=md,j=md;j<=ed;++j) if(j==ed||a[j]>a[l])add(a[l],j-l),l=j;
rem(g1);
add(g1,n/2-rl);
}
int main()
{
scanf("%d%d",&n,&q);
for(int i=1;i<=n;++i)scanf("%d",a+i),at[a[i]]=i;
a[n+1]=n+1;
for(int l=1,i=1;i<=n+1;++i) if(a[i]>a[l]) add(a[l],i-l),l=i;
for(int i=0;i<=n+1;++i)eh[i]=(int*)realloc(0,2*sizeof**eh);
for(int t,p,i=0;i<q;++i)
{
scanf("%d%d",&t,&p);
if(t>n)t=n+1;
append(t,i),append(t,p);
}
for(int i=0;i<=n+1;++i)
{
for(int j=0;j<eo[i];j+=2)
{
int gg=grp(eh[i][j+1]);
int idx=eh[i][j+1]-qry(gg);
zz[eh[i][j]]=a[at[gg]+idx-1];
}
shuffle();
}
for(int i=0;i<q;++i)printf("%d\n",zz[i]);
return 0;
}
Compilation message (stderr)
Main.c: In function 'append':
Main.c:25:18: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
25 | if(o>=2&&(o&o-1)==0)eh[i]=(int*)realloc(eh[i],2*o*sizeof**eh);
| ~^~
Main.c: In function 'shuffle':
Main.c:34:9: warning: unused variable 'st' [-Wunused-variable]
34 | int st=at[g1];
| ^~
Main.c: In function 'main':
Main.c:44:5: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
44 | scanf("%d%d",&n,&q);
| ^~~~~~~~~~~~~~~~~~~
Main.c:45:26: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
45 | for(int i=1;i<=n;++i)scanf("%d",a+i),at[a[i]]=i;
| ^~~~~~~~~~~~~~~
Main.c:53:9: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
53 | scanf("%d%d",&t,&p);
| ^~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |