-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhdu_3487_Play with Chain.cpp
302 lines (293 loc) · 7.53 KB
/
hdu_3487_Play with Chain.cpp
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
298
299
300
301
302
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cstdlib>
using namespace std;
#define Stop system("pause")
#define type int
#define N 301000
#define INF (1<<30)
#define max(a,b) (a>b?a:b)
#define min(a,b) (a<b?a:b)
using namespace std;
struct Splay_Tree
{
struct Node//节点
{
Node *c[2],*p;
int value,size,Min,lazy;
bool rev;
}*root,*null,*lb,*rb,S[N];
int scnt;
inline Node * NewNode(int value,Node *p)//插入新节点
{
Node *e=S+(++scnt);
e->value=value;
e->size=1;
e->p=p;
e->Min=value;
e->lazy=0;
e->rev=false;
e->c[0]=e->c[1]=null;
return e;
}
inline void Update(Node *p)//更新节点信息
{
if (p==null) return;
p->size=p->c[0]->size+p->c[1]->size+1;
p->Min=min(p->value,min(p->c[0]->Min,p->c[1]->Min));
}
inline void PushDown(Node *x)//更新标记
{
if(x==null) return;
if(x->rev)
{
x->rev=false;
Node *t=x->c[0]; x->c[0]=x->c[1]; x->c[1]=t;
x->c[0]->rev=!x->c[0]->rev;
x->c[1]->rev=!x->c[1]->rev;
}
if(x->lazy)
{
int w=x->lazy;
x->value+=w;
x->Min+=w;
x->c[0]->lazy+=w;
x->c[1]->lazy+=w;
x->lazy=0;
}
}
inline void Rotate(Node *x,int k)//左旋 k=0;右旋 k=1;
{
Node *y=x->p;
PushDown(x->c[0]);
PushDown(x->c[1]);
PushDown(y->c[!k]);
y->c[k]=x->c[!k];
y->c[k]->p=y;
x->p=y->p;
if(y->p->c[0]==y)
y->p->c[0]=x;
else
y->p->c[1]=x;
y->p=x;
x->c[!k]=y;
Update(y);
Update(x);
if(root==y) root=x;
}
inline void Splay(Node *x,Node *y)//伸展
{
PushDown(x);
while(x->p!=y)
{
if(x->p->p==y)
{
if(x->p->c[0]==x)
Rotate(x,0);
else
Rotate(x,1);
}
else if(x->p->p->c[0]==x->p)
{
if(x->p->c[0]==x)
Rotate(x->p,0),Rotate(x,0);
else
Rotate(x,1),Rotate(x,0);
}
else
{
if(x->p->c[1]==x)
Rotate(x->p,1),Rotate(x,1);
else
Rotate(x,0),Rotate(x,1);
}
}
Update(x);
}
inline void Select(int k,Node *y)
{
Node *x=root;
PushDown(x);
while(k!=x->c[0]->size+1)
{
if(k<=x->c[0]->size)
x=x->c[0];
else
{
k-=x->c[0]->size+1;
x=x->c[1];
}
PushDown(x);
}
Splay(x,y);
}
inline void MakeTree(int l,int r,type C[],Node *p,int side)
{
if(l>r) return;
int mid=(l+r)>>1;
Node *x;
x=NewNode(C[mid],p);
p->c[side]=x;
MakeTree(l,mid-1,C,x,0);
MakeTree(mid+1,r,C,x,1);
Update(x);
}
inline void Insert(int pos,int cnt,type C[])//在pos后插入长度为cnt的区间
{
Select(pos+1,null);
Select(pos+2,root);
MakeTree(1,cnt,C,root->c[1],0);
Splay(root->c[1]->c[0],null);
}
inline void InsertOne(int pos, type value)//在pos后插入一个数
{
Select(pos+1,null);
Select(pos+2,root);
Node *x;
x=NewNode(value,root->c[1]);
root->c[1]->c[0] = x;
Splay(root->c[1]->c[0],null);
}
inline void Add(int pos,int cnt,type value)//对pos后(包括)长度为cnt的区间中的每个值都增加value
{
Select(pos,null);
Select(pos+cnt+1,root);
root->c[1]->c[0]->lazy+=value;
Splay(root->c[1]->c[0],null);
}
inline void Delete(int pos,int cnt)//删除pos(包括)后长度为cnt的区间
{
Select(pos,null);
Select(pos+cnt+1,root);
root->c[1]->c[0]=null;
Splay(root->c[1],null);
}
inline void Reverse(int pos,int cnt)//旋转pos(包括)后长度为cnt的区间
{
Select(pos,null);
Select(pos+cnt+1,root);
root->c[1]->c[0]->rev=!root->c[1]->c[0]->rev;
Splay(root->c[1]->c[0],null);
}
inline void Move(int pos,int cnt,int des)//将pos后长度为cnt的区间移动到des后
{
Select(pos,null);
Select(pos+cnt+1,root);
Node * x=root->c[1]->c[0];
root->c[1]->c[0]=null;
Splay(root->c[1],null);
Select(des+1,null);
Select(des+2,root);
root->c[1]->c[0]=x;
x->p=root->c[1];
Splay(root->c[1]->c[0],null);
}
inline void Revolve(int a,int b,int k)//将[a,b]区间向右旋转k步
{
int len=(b-a+1),A,B,C;
k=((k%len)+len)%len;
if(k==0) return;
A=a;B=b-k;C=b; //转化成交换区间[A,B],[B+1,C];
Node *p1,*p2,*p3,*p4;
Select(A,null); p1=root; //A-1;
Select(C+2,null); p2=root; //C+1;
Select(A+1,null); p3=root; //A;
Select(B+1,null); p4=root; //B;
Select(A,null); //将A-1伸展成root
Select(C+2,p1); //将C+1伸展到A-1的右边
Select(B+1,p2); //将B伸展到C+1的左边
Node *x,*y;
x=p4->c[1]; //把b的右子树切断,挂在a的左边
p4->c[1]=null;
p3->c[0]=x;
Splay(p3,null); //把a伸展为root,一路更新即可
}
inline type GetMin(int pos,int cnt)//获得pos后长度为cnt的区间的最小值
{
Select(pos,null);
Select(pos+cnt+1,root);
PushDown(root->c[1]->c[0]);
return root->c[1]->c[0]->Min;
}
void Index(int pos)
{
Select(pos+1,null);
printf("%d",root->value);
if (pos<scnt-2) printf(" ");
}
inline void Print()//打印区间
{
int i;
for(i=1;i<scnt-1;i++)
Index(i);
printf("\n");
}
inline void Init()
{
scnt=-1;
null=0;
null=NewNode(INF,0);
null->size=0;
lb=root=NewNode(INF,null);
rb=root->c[1]=NewNode(INF,root);
Update(root);
}
// FOR Check
inline void dfs(Node *x)
{
if(x == null) return;
PushDown(x);
dfs(x->c[0]);
printf("%d -> %d\tsize = %d\n", x-S, x->value, x->size);
dfs(x->c[1]);
Update(x);
}
inline void SearchPrint()
{
Node *x = root;
dfs(x);
puts("");
}
inline void dfsMin(int tMin)
{
Node *x=root;
PushDown(x);
while(x->value != tMin)
{
if(x->c[0]->Min == tMin)
x=x->c[0];
else
x=x->c[1];
PushDown(x);
}
Splay(x,null);
}
}Splay;
int C[N];
char str[10];
int main(){
int n,m;
int a,b,c,i;
while (scanf("%d%d",&n,&m)==2){
if(n < 0 && m < 0) break;
Splay.Init();
for(i = 1; i <= n; i ++) C[i] = i;
Splay.Insert(0, n, C);
while(m --)
{
scanf("%s", str);
if(str[0] == 'C')
{
scanf("%d%d%d", &a, &b, &c);
Splay.Move(a, b - a + 1, c);
}else{
scanf("%d%d", &a, &b);
Splay.Reverse(a, b - a + 1);
}
}
Splay.Print();
}
return 0;
}