「Luogu P3690」【模板】Link Cut Tree (动态树)

给定$n$个点以及它们的点权,要求写一种数据结构支持以下操作:
求$x$到$y$路径上点权的$operatorname{xor}$和,连接或删除一条边,以及修改某个点的点权。

链接

题解

一道LCT裸题。
坑。

代码

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<bits/stdc++.h>
using namespace std;
typedef int ll;
const ll MAXN=3e5+51;
ll cnt,qcnt,op,x,y;
ll num[MAXN];
inline ll read()
{
register ll num=0,neg=1;
register char ch=getchar();
while(!isdigit(ch)&&ch!='-')
{
ch=getchar();
}
if(ch=='-')
{
neg=-1;
ch=getchar();
}
while(isdigit(ch))
{
num=(num<<3)+(num<<1)+(ch-'0');
ch=getchar();
}
return num*neg;
}
namespace LCT{
struct Node{
ll fa,val,tag;
ll ch[2];
};
struct LinkCutTree{
Node nd[MAXN];
ll st[MAXN];
inline bool nroot(ll x)
{
return nd[nd[x].fa].ch[0]==x||nd[nd[x].fa].ch[1]==x;
}
inline void update(ll x)
{
nd[x].val=nd[nd[x].ch[0]].val^nd[nd[x].ch[1]].val^num[x];
}
inline void reverse(ll x)
{
swap(nd[x].ch[0],nd[x].ch[1]),nd[x].tag^=1;
}
inline void spread(ll x)
{
if(nd[x].tag)
{
if(nd[x].ch[0])
{
reverse(nd[x].ch[0]);
}
if(nd[x].ch[1])
{
reverse(nd[x].ch[1]);
}
nd[x].tag=0;
}
}
inline void rotate(ll x)
{
ll fa=nd[x].fa,gfa=nd[fa].fa;
ll dir=nd[fa].ch[1]==x,son=nd[x].ch[!dir];
if(nroot(fa))
{
nd[gfa].ch[nd[gfa].ch[1]==fa]=x;
}
nd[x].ch[!dir]=fa,nd[fa].ch[dir]=son;
if(son)
{
nd[son].fa=fa;
}
nd[fa].fa=x,nd[x].fa=gfa;
update(fa);
}
inline void splay(ll x)
{
ll fa=x,gfa,cur=0;
st[++cur]=fa;
while(nroot(fa))
{
st[++cur]=fa=nd[fa].fa;
}
while(cur)
{
spread(st[cur--]);
}
while(nroot(x))
{
fa=nd[x].fa,gfa=nd[fa].fa;
if(nroot(fa))
{
rotate((nd[fa].ch[0]==x)^(nd[gfa].ch[0]==fa)?x:fa);
}
rotate(x);
}
update(x);
}
inline void access(ll x)
{
for(register int i=0;x;x=nd[i=x].fa)
{
splay(x),nd[x].ch[1]=i,update(x);
}
}
inline void makeRoot(ll x)
{
access(x),splay(x),reverse(x);
}
inline ll findRoot(ll x)
{
access(x),splay(x);
while(nd[x].ch[0])
{
spread(x),x=nd[x].ch[0];
}
return x;
}
inline void split(ll x,ll y)
{
makeRoot(x),access(y),splay(y);
}
inline void link(ll x,ll y)
{
makeRoot(x);
if(findRoot(y)!=x)
{
nd[x].fa=y;
}
}
inline void cut(ll x,ll y)
{
makeRoot(x);
if(findRoot(y)==x&&nd[x].fa==y&&!nd[x].ch[1])
{
nd[x].fa=nd[y].ch[0]=0;
update(y);
}
}
};
}
LCT::LinkCutTree lct;
int main()
{
cnt=read(),qcnt=read();
for(register int i=1;i<=cnt;i++)
{
num[i]=read();
}
for(register int i=0;i<qcnt;i++)
{
op=read(),x=read(),y=read();
if(!op)
{
lct.split(x,y);
printf("%d\n",lct.nd[y].val);
}
if(op==1)
{
lct.link(x,y);
}
if(op==2)
{
lct.cut(x,y);
}
if(op==3)
{
lct.splay(x),num[x]=y;
}
}
}