P3703 [SDOI2017]树点涂色

  • 1 x 表示把点 $x$ 到根节点的路径上所有的点染上一种没有用过的新颜色。

  • 2 x y 求 $x$ 到 $y$ 的路径的权值。

  • 3 x 在以 $x$ 为根的子树中选择一个点,使得这个点到根节点的路径权值最大,求最大权值。

考虑$access$的时候,相当把$x$到根节点的东西染上一种颜色。

考虑树上差分$sum_{ij}=dis_i+dis_j-2\times dis_{lca_{ij}}$

现在考虑维护$dis_i$。

当$access(x)$的时候,如果断虚链,表示断开的子树的$dis+1$(由于此时断开的子树的$dis_x$多了颜色),如果连上实链,表示断开的子树的$dis-1$。

代码
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


#include <bits/stdc++.h>

using namespace std;

const int N = 1e5 + 10;

struct Segment
{
int mx[N << 2], tag[N << 2];
void pushup(int pos)
{
mx[pos] = max(mx[pos << 1], mx[pos << 1 | 1]);
}
void addtag(int pos, int w)
{
mx[pos] += w;
tag[pos] += w;
}
void pushdown(int pos)
{
if (tag[pos])
{
int &w = tag[pos];
addtag(pos << 1, w);
addtag(pos << 1 | 1, w);
w = 0;
}
}
void update(int ql, int qr, int w, int pos, int l, int r)
{
if (ql <= l && r <= qr)
{
addtag(pos, w);
return;
}
pushdown(pos);
int mid = (l + r) >> 1;
if (ql <= mid)
update(ql, qr, w, pos << 1, l, mid);
if (qr > mid)
update(ql, qr, w, pos << 1 | 1, mid + 1, r);
pushup(pos);
}
int query(int ql, int qr, int pos, int l, int r)
{
if (ql <= l && r <= qr)
{
return mx[pos];
}
pushdown(pos);
int mid = (l + r) >> 1;
if (qr <= mid)
return query(ql, qr, pos << 1, l, mid);
else if (ql > mid)
return query(ql, qr, pos << 1 | 1, mid + 1, r);
else
return max(query(ql, qr, pos << 1, l, mid), query(ql, qr, pos << 1 | 1, mid + 1, r));
}
} smt;

struct LCT
{
#define ls son[pos][0]
#define rs son[pos][1]

int fa[N], cnt[N], root, tcnt;

int son[N][2];
int rev[N];
void pushup(int pos)
{
;
}
bool isroot(int pos)
{
return pos != son[fa[pos]][0] && pos != son[fa[pos]][1];
}
// void addtag(int pos)
// {
// rev[pos] ^= 1;
// swap(son[pos][0], son[pos][1]);
// }
void pushdown(int pos)
{
;
// if (rev[pos])
// {
// if (son[pos][1])
// addtag(son[pos][1]);
// if (son[pos][0])
// addtag(son[pos][0]);
// rev[pos] = 0;
// }
}

bool isson(int pos) { return pos == son[fa[pos]][1]; }

void conect(int x, int d, int y)
{
son[x][d] = y;
fa[y] = x;
}

void rotate(int x)
{
int y = fa[x], z = fa[y], dx = isson(x), dy = isson(y);

fa[x] = z;
if (!isroot(y))
son[z][dy] = x;
//conect(z, dy, x);
conect(y, dx, son[x][dx ^ 1]);
conect(x, dx ^ 1, y);
pushup(y), pushup(x);
}
int st[N];
void splay(int x)
{
int top;
st[top = 1] = x;
int u = x;
while (!isroot(u))
u = fa[u], st[++top] = u;
while (top)
pushdown(st[top--]);
while (!isroot(x))
{
int y = fa[x];
if (isroot(y))
{
rotate(x);
}
else if (isson(x) == isson(y))
rotate(y), rotate(x);
else
rotate(x), rotate(x);
}
pushup(x);
}
int findrt(int x)
{
while (son[x][0])
x = son[x][0];
return x;
}
} t;

int read()
{
int x = 0, f = 1;
char c = getchar();
while (c < '0' || c > '9')
{
if (c == '-')
f = -1;
c = getchar();
}
while (c >= '0' && c <= '9')
x = (x << 1) + (x << 3) + c - '0', c = getchar();
return x * f;
}

vector<int> g[N];
int tot, siz[N], dfn[N];
int f[N][20];
int dep[N];

int lca(int u, int v)
{
if (dep[u] < dep[v])
swap(u, v);
for (int i = 19; i >= 0; i--)
{
if (dep[f[u][i]] >= dep[v])
u = f[u][i];
}
if (u == v)
return v;
for (int i = 19; i >= 0; i--)
{
if (f[u][i] != f[v][i])
u = f[u][i], v = f[v][i];
}
return f[u][0];
}
void dfs(int x, int fa)
{
t.fa[x] = fa;
f[x][0] = fa;
dep[x] = dep[fa] + 1;
dfn[x] = ++tot;
siz[x] = 1;
for (int i = 1; i < 20; i++)
f[x][i] = f[f[x][i - 1]][i - 1];
for (int to : g[x])
{
if (to == fa)
continue;
dfs(to, x);
siz[x] += siz[to];
}
}
void access(int x)
{
for (int i = 0; x; i = x, x = t.fa[x])
{
t.splay(x);
int o = t.son[x][1];
if (o)
{
smt.update(dfn[t.findrt(o)], dfn[t.findrt(o)] + siz[t.findrt(o)] - 1, 1, 1, 1, tot);
}
t.son[x][1] = i;
o = i;
if (o)
{
//cout << o << " " << t.findrt(o) << endl;
smt.update(dfn[t.findrt(o)], dfn[t.findrt(o)] + siz[t.findrt(o)] - 1, -1, 1, 1, tot);
}
t.pushup(x);
}
}
int main()
{
int n = read(), m = read();
for (int i = 1; i < n; i++)
{
int u = read(), v = read();
g[u].push_back(v);
g[v].push_back(u);
}
dfs(1, 0);
for (int i = 1; i <= n; i++)
smt.update(dfn[i], dfn[i] + siz[i] - 1, 1, 1, 1, tot);
for (int i = 1; i <= m; i++)
{
int op = read();

if (op == 1)
{
int x = read();
access(x);
}
else if (op == 2)
{
int x = read(), y = read();
int o = lca(x, y);

int res = smt.query(dfn[x], dfn[x], 1, 1, tot) + smt.query(dfn[y], dfn[y], 1, 1, tot) - 2 * smt.query(dfn[o], dfn[o], 1, 1, tot) + 1;
printf("%d\n", res);
}
else
{
int x = read();
printf("%d\n", smt.query(dfn[x], dfn[x] + siz[x] - 1, 1, 1, tot));
}
}
}