-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19Dsplay.cpp
173 lines (153 loc) · 3.46 KB
/
19Dsplay.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
#include <cstdio>
#include <vector>
#include <algorithm>
#include <set>
#define cind(x) scanf("%d", &x)
#define cinc(x) scanf("%c", &x)
#define cindln(x) scanf("%d\n", &x)
#define stmax(st) *prev(st.end(), 1)
using namespace std;
class Node {
public:
int s[2], f;
int maxy;
int x;
multiset<int> st;
Node() {
s[0] = s[1] = 0;
f = 0;
maxy = -1;
}
Node(int nx, int ny):Node() {
x = nx;
st.insert(ny);
maxy = ny;
}
};
Node t[300007];
int nt = 0;
int root = 0;
inline void setroot(int x) { root = x, t[x].f = 0; }
void refresh(int p) {
t[p].maxy = stmax(t[p].st);
for (int i=0; i<2; ++i)
if (t[p].s[i])
t[p].maxy = max(t[p].maxy, t[t[p].s[i]].maxy);
}
void link(int x, int p, bool right) {
if (p) {
t[p].s[right] = x;
refresh(p);
}
if (x)
t[x].f = p;
}
void rotate(int y, bool right) {
int x = t[y].s[!right], p = t[y].f;
link(x, p, y==t[p].s[1]);
link(t[x].s[right], y, !right);
link(y, x, right);
}
void splay(int x) {
while (t[x].f) {
int p = t[x].f;
bool lx = t[p].s[0] == x;
if (p==root)
rotate(p, lx);
else {
int pp = t[p].f;
bool lp = t[pp].s[0] == p;
if (lx ^ lp)
rotate(p, lx), rotate(pp, lp);
else
rotate(pp, lp), rotate(p, lx);
}
}
root = x;
}
void insert(int x, int y) {
int n = root, p = 0;
while (n)
if (t[n].x==x) {
t[n].st.insert(y);
t[n].maxy = max(t[n].maxy, stmax(t[n].st));
splay(n);
return;
} else {
p = n;
n = t[n].s[x>t[n].x];
}
t[n=(++nt)] = Node(x, y);
link(n, p, x>t[p].x);
splay(n);
}
int find(int x) {
int now = root;
while (now && t[now].x != x)
now = t[now].s[x>t[now].x];
return now;
}
int find_min(int x) {
while (t[x].s[0]) x = t[x].s[0];
return x;
}
void remove(int x, int y) {
int n = find(x);
splay(n);
t[n].st.erase(t[n].st.find(y));
if (!t[n].st.empty()) {
refresh(n);
return;
}
int ls = t[n].s[0], rs = t[n].s[1];
if (!(ls && rs))
setroot(ls ? ls : (rs ? rs : 0));
else {
int suc = find_min(rs);
if (suc==rs) {
link(ls, suc, false);
setroot(suc);
} else {
int psuc = t[suc].f;
link(t[suc].s[1], psuc, false);
link(ls, suc, false);
link(rs, suc, true);
setroot(suc);
splay(suc);
}
}
}
int find(int node, int x, int y) {
Node& n = t[node];
if (!node || n.maxy<=y) return 0;
int res = n.x>x ? find(n.s[0], x, y) : 0;
if (res) return res;
if (n.x>x && stmax(n.st)>y) return node;
return find(n.s[1], x, y);
}
int main() {
int nop;
cindln(nop);
char c;
int x, y;
while (nop--) {
cinc(c);
for (char tc='a'; tc!=' '; cinc(tc));
cind(x), cindln(y);
if (c=='a') {
insert(x, y);
} else if (c=='r') {
remove(x, y);
} else {
int node = find(root, x, y);
if (!node)
printf("%d\n", -1);
else {
splay(node);
int ansy = *t[node].st.upper_bound(y);
printf("%d %d\n", t[node].x, ansy);
}
}
}
return 0;
}