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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
#include<iostream> #include<cstdio> using namespace std; long long read() { long long x=0,f=1; char c=getchar(); while(!isdigit(c)){if(c=='-') f=-1;c=getchar();} while(isdigit(c)){x=x*10+c-'0';c=getchar();} return x*f; } const int N=100000*2+100; const int M=200000000; struct SegmentTree { #define mid ((now_l+now_r)>>1) int son[N*20][2],w[N*20],to; void Change(int l,int r,int num,int now,int now_l,int now_r) { if(now_l>=l and now_r<=r) { w[now]=num; return; } if(l<=mid) { if(son[now][0]==0) son[now][0]=++to,w[to]=w[now]; Change(l,r,num,son[now][0],now_l,mid); } if(r>mid) { if(son[now][1]==0) son[now][1]=++to,w[to]=w[now]; Change(l,r,num,son[now][1],mid+1,now_r); } } int Query(int x,int now,int now_l,int now_r) { if(now_l==now_r) return w[now]; if(x<=mid) { if(son[now][0]==0) return w[now]; else return Query(x,son[now][0],now_l,mid); } else { if(son[now][1]==0) return w[now]; else return Query(x,son[now][1],mid+1,now_r); } } #undef mid }sgt; struct SPLAY { #define root son[0][1] int son[N][2],fa[N],cnt[N],no[N],size[N],to; inline void update(int x) { size[x]=size[son[x][0]]+size[son[x][1]]+cnt[x]; } inline void rotate(int x,int type) { int y=fa[x],z=fa[y]; fa[x]=z,son[z][y==son[z][1]]=x; fa[son[x][type]]=y,son[y][!type]=son[x][type]; fa[y]=x,son[x][type]=y; update(y),update(x); } void splay(int x,int to) { while(fa[x]!=to) { if(fa[fa[x]]!=to and x==son[fa[x]][fa[x]==son[fa[fa[x]]][1]]) rotate(fa[x],x==son[fa[x]][0]); rotate(x,x==son[fa[x]][0]); } } void split(int x,int K) { splay(x,0); int t1=son[x][0],t2=son[x][1]; while(son[t1][1]!=0) t1=son[t1][1]; while(son[t2][0]!=0) t2=son[t2][0]; splay(t1,0); splay(t2,root);
if(K!=1) { son[x][0]=++to,fa[to]=x; no[to]=no[x],size[to]=cnt[to]=K-1; sgt.Change(no[to],no[to]+cnt[to]-1,to,1,1,M); } if(K!=cnt[x]) { son[x][1]=++to,fa[to]=x; no[to]=no[x]+K,size[to]=cnt[to]=cnt[x]-K; sgt.Change(no[to],no[to]+cnt[to]-1,to,1,1,M); } no[x]=no[x]+K-1,cnt[x]=1; } int GetKth(int x,int K) { if(size[son[x][0]]>=K) return GetKth(son[x][0],K); K-=size[son[x][0]]; if(K<=cnt[x]) { if(cnt[x]==1) { splay(x,0); return x; } split(x,K); splay(x,0); return x; } K-=cnt[x]; return GetKth(son[x][1],K); } int Change(int x,bool type) { int t=sgt.Query(x,1,1,M),ans; splay(t,0); ans=size[son[t][0]]+x-no[t]+1; split(t,x-no[t]+1); if(son[t][0]!=0 or son[t][1]!=0) split(t,1); if(type==0) { son[fa[t]][t==son[fa[t]][1]]=0; update(fa[t]); splay(1,0); int now=son[root][1]; while(son[now][0]!=0) now=son[now][0]; son[now][0]=t,fa[t]=now; update(now),splay(now,0); } else { son[fa[t]][t==son[fa[t]][1]]=0; update(fa[t]); splay(3,0); int now=son[root][0]; while(son[now][1]!=0) now=son[now][1]; son[now][1]=t,fa[t]=now; update(now),splay(now,0); } return ans; } int Change2(int x,int y) { int t=sgt.Query(x,1,1,M); split(t,x-no[t]+1); sgt.Change(y,y,t,1,1,M); no[t]=y; splay(t,0); return size[son[t][0]]+1; } int Query(int K) { return no[GetKth(root,K)]; } void Init(int n) { root=++to,fa[root]=0; son[root][1]=++to,fa[to]=root,cnt[to]=size[to]=n,no[to]=1; sgt.to=1; sgt.Change(1,n,to,1,1,M); son[to][1]=to+1,fa[to+1]=to,to++; update(to),update(to-1),update(root); } void Print(int now) { if(now==0) return; Print(son[now][0]); cout<<"no:"<<now<<" ["<<no[now]<<","<<no[now]+cnt[now]-1<<"] "<<"size:"<<size[now]<<" cnt:"<<cnt[now]<<" sonl&r:"<<son[now][0]<<" "<<son[now][1]<<endl; Print(son[now][1]); } #undef root }splay; int n,m; int main() { n=read(),m=read();
splay.Init(n); int ans=0; for(int i=1;i<=m;i++) { int op=read(),x=read()-ans; if(op==1) { int y=read()-ans; printf("%d\n",ans=splay.Change2(x,y)); } else if(op==2) printf("%d\n",ans=splay.Change(x,0)); else if(op==3) printf("%d\n",ans=splay.Change(x,1)); else printf("%d\n",ans=splay.Query(x)); } return 0; }
|