1. #include<cstdio>
  2. #include<algorithm>
  3. #define N 500010
  4. #define rg register
  5. #define ls (c[u][0])
  6. #define rs (c[u][1])
  7. using namespace std;
  8. int n,m,x,y,opt,top,val[N],c[N][],fa[N],xr[N],st[N],rev[N];
  9. inline int read(){
  10. int k=,f=; char c=getchar();
  11. while(c<''||c>'')c=='-'&&(f=-),c=getchar();
  12. while(''<=c&&c<='')k=k*+c-'',c=getchar();
  13. return k*f;
  14. }
  15. inline bool isroot(int u){
  16. return c[fa[u]][]!=u&&c[fa[u]][]!=u;
  17. }
  18. inline bool which(int u){
  19. return c[fa[u]][]==u;
  20. }
  21. inline void pushup(int u){
  22. xr[u]=xr[ls]^xr[rs]^val[u];
  23. }
  24. inline void pushdown(int u){
  25. rev[ls]^=; rev[rs]^=; rev[u]=; swap(ls,rs);
  26. }
  27. void rotate(int u){
  28. int f=fa[u],gf=fa[f],wh=which(u);
  29. if(!isroot(f)) c[gf][which(f)]=u;
  30. fa[u]=gf; fa[f]=u; fa[c[u][wh^]]=f;
  31. c[f][wh]=c[u][wh^]; c[u][wh^]=f;
  32. pushup(f); pushup(u);
  33. }
  34. void splay(int u){
  35. st[top=]=u;
  36. for(rg int i=u;!isroot(i);i=fa[i]) st[++top]=fa[i];
  37. for(rg int i=top;i;i--) if(rev[st[i]]) pushdown(st[i]);
  38. while(!isroot(u)){
  39. if(!isroot(fa[u])) rotate(which(u)==which(fa[u])?fa[u]:u);
  40. rotate(u);
  41. }
  42. }
  43. inline void access(int u){
  44. for(rg int son=;u;son=u,u=fa[u]) splay(u),c[u][]=son,pushup(u);
  45. }
  46. inline void makeroot(int u){
  47. access(u); splay(u); rev[u]^=;
  48. }
  49. int find(int u){
  50. access(u); splay(u);
  51. while(ls) u=ls; return u;
  52. }
  53. void split(int x,int y){
  54. makeroot(x); access(y); splay(y);
  55. }
  56. void cut(int x,int y){
  57. split(x,y); bool goright=;
  58. int t=c[y][];
  59. while(c[t][]) t=c[t][],goright=;
  60. if(t==x&&goright) c[fa[t]][]=,fa[x]=;
  61. if(t==x&&(!goright)) c[y][]=,fa[x]=;
  62. }
  63. void link(int x,int y){
  64. makeroot(x); fa[x]=y;
  65. }
  66. int main(){
  67. n=read(); m=read();
  68. for(rg int i=;i<=n;i++) val[i]=xr[i]=read();
  69. while(m--){
  70. opt=read(); x=read(); y=read();
  71. if(opt==) split(x,y),printf("%d\n",xr[y]);
  72. if(opt==) if(find(x)!=find(y))link(x,y);
  73. if(opt==) if(find(x)==find(y)) cut(x,y);
  74. if(opt==) access(x),splay(x),val[x]=y,pushup(x);
  75. }
  76. return ;
  77. }

【模板】Link-Cut Tree的更多相关文章

  1. LCT总结——概念篇+洛谷P3690[模板]Link Cut Tree(动态树)(LCT,Splay)

    为了优化体验(其实是强迫症),蒟蒻把总结拆成了两篇,方便不同学习阶段的Dalao们切换. LCT总结--应用篇戳这里 概念.性质简述 首先介绍一下链剖分的概念(感谢laofu的讲课) 链剖分,是指一类 ...

  2. 洛谷P3690 [模板] Link Cut Tree [LCT]

    题目传送门 Link Cut Tree 题目背景 动态树 题目描述 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两个整数(x,y),代 ...

  3. 模板Link Cut Tree (动态树)

    题目描述 给定N个点以及每个点的权值,要你处理接下来的M个操作.操作有4种.操作从0到3编号.点从1到N编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor和.保证x到y是联 ...

  4. 洛谷.3690.[模板]Link Cut Tree(动态树)

    题目链接 LCT(良心总结) #include <cstdio> #include <cctype> #include <algorithm> #define gc ...

  5. 【刷题】洛谷 P3690 【模板】Link Cut Tree (动态树)

    题目背景 动态树 题目描述 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor ...

  6. P3690 【模板】Link Cut Tree (动态树)

    P3690 [模板]Link Cut Tree (动态树) 认父不认子的lct 注意:不 要 把 $fa[x]$和$nrt(x)$ 混 在 一 起 ! #include<cstdio> v ...

  7. LG3690 【模板】Link Cut Tree (动态树)

    题意 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor和.保证x到y是联通的 ...

  8. AC日记——【模板】Link Cut Tree 洛谷 P3690

    [模板]Link Cut Tree 思路: LCT模板: 代码: #include <bits/stdc++.h> using namespace std; #define maxn 30 ...

  9. LG3690 【模板】Link Cut Tree 和 SDOI2008 洞穴勘测

    UPD:更新了写法. [模板]Link Cut Tree 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 后接两个整数(x,y),代表询问从x到y ...

  10. (RE) luogu P3690 【模板】Link Cut Tree

    二次联通门 : luogu P3690 [模板]Link Cut Tree 莫名RE第8个点....如果有dalao帮忙查错的话万分感激 #include <cstdio> #includ ...

随机推荐

  1. C++11系列-什么是C++11

    什么是C++0x? C++0x是C++最新标准标准化过程中的曾用名,在这一系列文章中我们将介绍最新标准添加的一系列新的语言特性.在2011年9月份,C++0x正式由官方发布并命名C++11,现在很多编 ...

  2. mvn scope (转)

    策略一: 对于容器提供的(如:servlet-api-2.3等)和测试需要时的(如:junit-3.81等),可以直接在pom.xml中去掉. maven的dependency中有一个tag是< ...

  3. JavaSE 基础习题整理 - 面向对象篇

    大家好,今天空闲时间整理了一份JavaSE面向对象的常用习题,喜欢的朋友可以关注我.习题来自互联网,不喜勿喷 1.定义长方形类,含: 属性:宽.高(整型): 方法:求周长.面积: 构造方法3个:(1) ...

  4. HTML--文本域,支持多行文本输入

    当用户需要在表单中输入大段文字时,需要用到文本输入域. 语法: <textarea rows="行数" cols="列数">文本</texta ...

  5. ios TextField 不被键盘遮住

    首先放一个scrollView窗口,将Scroll View视图占整个屏幕. 向Scroll View    添加TextField 控件. 首先,ViewController.h  代码如下; #i ...

  6. 解决gradle project refresh failed: protocol family unavailable问题的几种方法

    Android Studio从版本1.5更新到2.1之后,打开Android Studio一直提示: gradle project refresh failed: protocol family un ...

  7. scala控制流程语句

    直接上代码了哈. package com.test.scala.test object Kongzi { def main(args: Array[String]): Unit = { //if 语句 ...

  8. 【转】Centos7 ftp 配置及报错处理

    原文链接: https://www.cnblogs.com/GaZeon/p/5393853.html Centos7网络配置,vsftpd安装及530报错解决 今天在虚拟机安装CentOS7,准备全 ...

  9. Android 获取android安装apk框的安装状态(如点击取消、返回)

    最近鼓捣android,碰到个问题,因为没有root权限,需要调用Intent安装apk,但需要获取用户是否安装了(如,用户点击了返回或取消),查了很多文章,最后可以解决,但有瑕疵,解决方法如下: p ...

  10. 01--Java集合知识

    一.Java集合概览 Java中集合分2大块,Collection和Map,分别代表不同功能的集合类对象,整体结构图如下: Collection├List│├LinkedList│├ArrayList ...