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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
| //#include <bits/stdc++.h> # include <stdio.h>
typedef long long int LL;
const int N = 200000+7;
inline int read(){ int x=0,f=1;char ch=getchar(); for(;ch<'0'||'9'<ch;ch=getchar()) if(ch=='-')f=-1; for(;'0'<=ch&&ch<='9';ch=getchar()) x=(x<<3)+(x<<1)+ch-'0'; return x*f; }
/*******************************************************/
/*************SPLAY-tree************/
int n,m;
int ch[N][2]; //ch[][0] lson ch[][1] rson int f[N]; //father int sz[N]; //size int val[N]; //value of node_i int lazy[N]; //lazy-tag int mi[N]; //min of son-tree : root of i int rev[N]; //tag of revear int root; //root of splay-tree int tot; //tot,total,is the number of node of tree
void myswap(int &x,int &y){ x^=y,y^=x,x^=y; } int min(int x,int y){ return (x<y)?x:y; } void update_rev(int x){ if(!x) return ; myswap(ch[x][0],ch[x][1]); rev[x]^=1; }
void update_add(int x,int v){ if(x) lazy[x]+=v,val[x]+=v,mi[x]+=v; }
void pushdown(int x){ if(!x) return ; if(lazy[x]){ update_add(ch[x][0],lazy[x]); update_add(ch[x][1],lazy[x]); lazy[x]=0; } if(rev[x]){ update_rev(ch[x][0]); update_rev(ch[x][1]); rev[x]=0; } }
void pushup(int x){ if(!x)return ; sz[x]=1,mi[x]=val[x]; if(ch[x][0])sz[x]+=sz[ch[x][0]],mi[x]=min(mi[x],mi[ch[x][0]]); if(ch[x][1])sz[x]+=sz[ch[x][1]],mi[x]=min(mi[x],mi[ch[x][1]]); }
void rotate(int x,int k){ // k = 0 左旋, k = 1 右旋 int y=f[x];int z=f[y]; pushdown(y),pushdown(x); ch[y][!k]=ch[x][k];if(ch[x][k])f[ch[x][k]]=y; f[x]=z;if(z)ch[z][ch[z][1]==y]=x; f[y]=x;ch[x][k]=y; pushup(y),pushup(x); } /*** 这样的SPLAY 不好么? 相比分6种旋转的 zig-zag */ void splay(int x,int goal){ for(int y=f[x];f[x]!=goal;y=f[x]) rotate(x,(ch[y][0]==x)); if(goal==0) root=x; }
void newnode(int rt,int v,int fa){ // printf("%d <---\n",rt); f[rt]=fa; mi[rt]=val[rt]=v;sz[rt]=1; ch[rt][0]=ch[rt][1]=rev[rt]=lazy[rt]=0; } void delnode(int rt){ f[rt]=mi[rt]=val[rt]=sz[rt]=0; ch[rt][0]=ch[rt][1]=rev[rt]=lazy[rt]=0; } void build(int &rt,int l,int r,int fa){ if(l>r) return ; int m = r+l >> 1; rt=m; newnode(rt,val[rt],fa); build(ch[rt][0],l,m-1,rt); build(ch[rt][1],m+1,r,rt); pushup(rt); }
void init(int n){ root=0; f[0]=sz[0]=ch[0][0]=ch[0][1]=rev[0]=0; build(root,1,n,0); pushup(root); }
/***************************以下是DEBUG***************************/
void Traversal(int rt){ if(!rt) return; pushdown(ch[rt][0]);Traversal(ch[rt][0]); printf("%d f[]=%d sz[]=%d lson=%d rson=%d val[]=%d mi[]=%d \n",rt,f[rt],sz[rt],ch[rt][0],ch[rt][1],val[rt],mi[rt]); pushdown(ch[rt][1]);Traversal(ch[rt][1]); pushup(rt); } void debug(){ printf("ROOT = %d <---\n",root); pushdown(root); Traversal(root); }
/**************************以下是前置操作**************************/
//以x为根的子树 的最左节点 int x_left(int x){ for(pushdown(x);ch[x][0];pushdown(x)) x=ch[x][0]; return x; } //以x为根的子树 的最右节点 int x_right(int x){ for(pushdown(x);ch[x][1];pushdown(x)) x=ch[x][1]; return x; } //以x为根的子树 第k个数的位置 int kth(int x,int k){ pushdown(x); if(sz[ch[x][0]]+1 == k) return x; else if(sz[ch[x][0]]>=k) return kth(ch[x][0],k); else return kth(ch[x][1],k-sz[ch[x][0]]-1); }
/***************************以下是正经操作**************************/ /*** 如果有区间为[1,n]情况不好处理, 所以我们可以 多添加一个head,一个tail 这样的话区间[1,n]就是tail的左儿子了, */ //区间交换 void exchange(int l1,int r1,int l2,int r2){ int x=kth(root,l2-1),y=kth(root,r2+1); splay(x,0),splay(y,x); int tmp_right = ch[y][0]; ch[y][0]=0; x=kth(root,l1-1),y=kth(root,l1); splay(x,0),splay(y,x); ch[y][0] = tmp_right; f[tmp_right]=y; }
//区间翻转 void reversal(int l,int r){ int x=kth(root,l-1),y=kth(root,r+1); splay(x,0);splay(y,x); update_rev(ch[y][0]); }
//区间加 void add(int l,int r,int v){ int x=kth(root,l-1),y=kth(root,r+1); splay(x,0);splay(y,x); update_add(ch[y][0],v); }
//按照二叉排序树性质插入x void _insert(int x){ /** 其实我们也可以 将插入后临街的两个节点 a x b 将a伸展到根 b伸展到 根下 那么b的左儿子一定没有,插进去就行了, */ }
//在第k个数后插入值为x的节点 void _insert(int k,int x){ int r=kth(root,k),rr=kth(root,k+1); splay(r,0),splay(rr,r); // puts("begin insert <-------------------"); // printf("%d %d %d\n",r,rr,tot); // debug(); // puts("end insert <-------------------"); newnode(++tot,x,rr);ch[rr][0]=tot; for(r=rr;r;r=f[r])pushdown(r),pushup(r); splay(rr,0); }
//删除第k个数 void _delete(int k){ splay(kth(root,k-1),0); splay(kth(root,k+1),root); delnode(ch[ch[root][1]][0]); ch[ch[root][1]][0]=0; pushup(ch[root][1]); pushup(root); }
//int get_max(int l,int r){ // int x=kth(root,l-1),y=kth(root,r+1); // splay(x,0);splay(y,x); // return mx[ch[y][0]]; //}
int get_min(int l,int r){ int x=kth(root,l-1),y=kth(root,r+1); splay(x,0);splay(y,x); return mi[ch[y][0]]; }
/*****************************************************/
char s[12];
int main(){ scanf("%d",&n); val[1]=val[n+2]=1000000000; for(int i=1+1;i<=n+1;i++) val[i]=read(); tot=n+2;init(n+2); scanf("%d",&m); for(int i=1,d,l,r,v;i<=m;i++){ scanf("%s",s); if(s[0]=='A'){ //ADD scanf("%d%d%d",&l,&r,&d); add(l+1,r+1,d); } else if(s[0]=='I'){ //INSERT scanf("%d%d",&l,&d); _insert(l+1,d); } else if(s[0]=='M'){ //MIN scanf("%d%d",&l,&r); printf("%d\n",get_min(l+1,r+1)); } else if(s[0]=='D'){ //DELETE scanf("%d",&l); _delete(l+1); } else if(s[3]=='E'){ //REVERSE scanf("%d%d",&l,&r); reversal(l+1,r+1); } else { //REVOLVE scanf("%d%d%d",&l,&r,&d); d=(d%(r-l+1)+r-l+1)%(r-l+1); if(d) exchange(l +1,r-d +1,r-d+1 +1,r +1); } // debug(); } // debug();
return 0; }
/**** 5 1 2 3 4 5 6 ADD 1 3 1 INSERT 3 3 DELETE 4 MIN 1 5 MIN 2 5 REVOLVE 1 5 2
10 1 2 3 4 5 6 7 8 9 10 15 ADD 4 8 3 MIN 5 7 MIN 7 10 REVERSE 2 5 MIN 2 6 MIN 2 3 INSERT 3 4 MIN 3 4 MIN 5 10 DELETE 6 MIN 3 5 MIN 4 4 REVOLVE 3 6 7 MIN 5 8 MIN 7 10
// */
|