Tyvj 1729 文艺平衡树

题目

您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区间是[2,4]的话,结果是5 2 3 4 1

INPUT

第一行为n,m n表示初始序列有n个数,这个序列依次是(1,2……n-1,n) m表示翻转操作次数
接下来m行每行两个数[l,r] 数据保证 1<=l<=r<=n

OUTPUT

输出一行n个数字,表示原始序列经过m次变换后的结果

SAMPLE

INPUT

5 3
1 3
1 3
1 4

OUTPUT

4 3 2 1 5

解题报告

板子题,Splay,fhq-Treap什么的,我半个都不会呢= =
上板子= =

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
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
using namespace std;
inline int read(){
int sum(0);
char ch(getchar());
while(ch<'0'||ch>'9')
ch=getchar();
while(ch>='0'&&ch<='9'){
sum=sum*10+ch-'0';
ch=getchar();
}
return sum;
}
int n,m,top;
struct node{
int v,key,size,mark;
node *ch[2];
node(int x=0):size(1),key(rand()),mark(0),v(x){
ch[0]=ch[1]=NULL;
}
inline void revs();
inline void pushup();
inline void pushdown(){
if(mark){
if(ch[0])
ch[0]->revs();
if(ch[1])
ch[1]->revs();
mark=0;
}
}
}*root,*st[100005];
typedef pair<node*,node*>p;
inline void swp(node *x,node *y){
node *tmp(x);
x=y;
y=tmp;
}
inline int get_size(node *x){
if(x==NULL)
return 0;
return x->size;
}
inline void node::revs(){
mark^=1;
swap(ch[0],ch[1]);
}
inline void node::pushup(){
size=1;
size+=get_size(ch[0])+get_size(ch[1]);
}
inline node* build(){
node *x,*las;
for(int i=1;i<=n;i++){
x=new node(i);
las=NULL;
while(top&&st[top]->key>x->key){
st[top]->pushup();
las=st[top];
st[top--]=NULL;
}
if(top)
st[top]->ch[1]=x;
x->ch[0]=las;
st[++top]=x;
}
while(top)
st[top--]->pushup();
return st[1];
}
inline node* merge(node *x,node *y){
if(x==NULL)
return y;
if(y==NULL)
return x;
if(x->key<y->key){
x->pushdown();
x->ch[1]=merge(x->ch[1],y);
x->pushup();
return x;
}
else{
y->pushdown();
y->ch[0]=merge(x,y->ch[0]);
y->pushup();
return y;
}
}
inline p split(node *x,int k){
if(!x)
return p(NULL,NULL);
p y;
x->pushdown();
if(get_size(x->ch[0])>=k){
y=split(x->ch[0],k);
x->ch[0]=y.second;
x->pushup();
y.second=x;
}
else{
y=split(x->ch[1],k-get_size(x->ch[0])-1);
x->ch[1]=y.first;
x->pushup();
y.first=x;
}
return y;
}
inline int rk(node *rt,int x){
if(!rt)
return 0;
return x<rt->v?rk(rt->ch[0],x):rk(rt->ch[1],x)+get_size(rt->ch[0])+1;
}
inline int kth(int k){
p x(split(root,k-1)),y(split(x.second,1));
node *tmp(y.first);
root=merge(merge(x.first,tmp),y.second);
return tmp->v;
}
inline void insert(int x){
int k(rk(root,x));
p tp(split(root,k));
node *tmp(new node(x));
root=merge(merge(tp.first,tmp),tp.second);
}
inline void print(node *x){
if(!x)
return;
x->pushdown();
print(x->ch[0]);
printf("%d ",x->v);
print(x->ch[1]);
}
inline int gg(){
srand(time(NULL));
n=read(),m=read();
root=build();
for(int i=1;i<=m;i++){
int x(read()),y(read());
if(x==y)
continue;
p tmp1(split(root,x-1)),tmp2(split(tmp1.second,y-x+1));
tmp2.first->revs();
root=merge(tmp1.first,merge(tmp2.first,tmp2.second));
}
print(root);
}
int k(gg());
int main(){;}

代码极其漂(chou)亮(lou),请慢(gan)慢(jin)欣(tui)赏(chu)