博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【bzoj3282】Tree LCT
阅读量:5313 次
发布时间:2019-06-14

本文共 2277 字,大约阅读时间需要 7 分钟。

题目描述

给定N个点以及每个点的权值,要你处理接下来的M个操作。操作有4种。操作从0到3编号。点从1到N编号。

0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor和。保证x到y是联通的。

1:后接两个整数(x,y),代表连接x到y,若x到Y已经联通则无需连接。

2:后接两个整数(x,y),代表删除边(x,y),不保证边(x,y)存在。

3:后接两个整数(x,y),代表将点X上的权值变成Y。

输入

第1行两个整数,分别为N和M,代表点数和操作数。

第2行到第N+1行,每行一个整数,整数在[1,10^9]内,代表每个点的权值。

第N+2行到第N+M+1行,每行三个整数,分别代表操作类型和操作所需的量。

输出

对于每一个0号操作,你须输出X到Y的路径上点权的Xor和。

样例输入

3 3

1
2
3
1 1 2
0 1 2
0 1 1

样例输出

3

1


题解

真正的LCT模板题,几乎包括了LCT所有基本操作

#include 
#include
#define N 300010#define lson c[0][x]#define rson c[1][x]using namespace std;int fa[N] , c[2][N] , w[N] , sum[N] , rev[N];char str[5];void pushup(int x){ sum[x] = sum[lson] ^ sum[rson] ^ w[x];}void pushdown(int x){ if(rev[x]) { swap(c[0][lson] , c[1][lson]); swap(c[0][rson] , c[1][rson]); rev[lson] ^= 1 , rev[rson] ^= 1; rev[x] = 0; }}bool isroot(int x){ return c[0][fa[x]] != x && c[1][fa[x]] != x;}void update(int x){ if(!isroot(x)) update(fa[x]); pushdown(x);}void rotate(int x){ int y = fa[x] , z = fa[y] , l = (c[1][y] == x) , r = l ^ 1; if(!isroot(y)) c[c[1][z] == y][z] = x; fa[x] = z , fa[y] = x , fa[c[r][x]] = y , c[l][y] = c[r][x] , c[r][x] = y; pushup(y) , pushup(x);}void splay(int x){ update(x); while(!isroot(x)) { int y = fa[x] , z = fa[y]; if(!isroot(y)) { if((c[0][y] == x) ^ (c[0][z] == y)) rotate(x); else rotate(y); } rotate(x); }}void access(int x){ int t = 0; while(x) splay(x) , rson = t , pushup(x) , t = x , x = fa[x];}void makeroot(int x){ access(x) , splay(x); swap(lson , rson) , rev[x] ^= 1;}int find(int x){ access(x) , splay(x); while(lson) pushdown(x) , x = lson; return x;}void link(int x , int y){ makeroot(x) , fa[x] = y;}void cut(int x , int y){ makeroot(x) , access(y) , splay(y); if(c[0][y] == x && c[1][x] == 0) fa[x] = c[0][y] = 0 , pushup(y);}void split(int x , int y){ makeroot(y) , access(x) , splay(x);}int main(){ int n , m , i , p , x , y; scanf("%d%d" , &n , &m); for(i = 1 ; i <= n ; i ++ ) scanf("%d" , &w[i]) , sum[i] = w[i]; while(m -- ) { scanf("%d%d%d" , &p , &x , &y); switch(p) { case 0: split(x , y) , printf("%d\n" , sum[x]); break; case 1: if(find(x) != find(y)) link(x , y); break; case 2: cut(x , y); break; default: split(x , x) , w[x] = y , pushup(x); } } return 0;}

 

转载于:https://www.cnblogs.com/GXZlegend/p/6795094.html

你可能感兴趣的文章
C语言栈的实现
查看>>
代码为什么需要重构
查看>>
TC SRM 593 DIV1 250
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
Python-S9-Day127-Scrapy爬虫框架2
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
虚拟DOM
查看>>
自建数据源(RSO2)、及数据源增强
查看>>
关于View控件中的Context选择
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
Spark的启动进程详解
查看>>
使用命令创建数据库和表
查看>>
机器视觉:SSD Single Shot MultiBox Detector
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>