一个没有维护任何东西的动态树模板

忘了怎么写可以直接来粘

  1. int ch[300010][2], fa[300010], st[300010];
  2. bool lazy[300010];
  3. bool nroot(int x) { return ch[fa[x]][0] == x || ch[fa[x]][1] == x; }
  4. void rev(int x) { swap(ch[x][0], ch[x][1]), lazy[x] ^= 1; }
  5. void pushup(int x) { /*维护一个pre*/ }
  6. void pushdown(int x)
  7. {
  8. if (lazy[x])
  9. {
  10. if (ch[x][0]) rev(ch[x][0]);
  11. if (ch[x][1]) rev(ch[x][1]);
  12. lazy[x] = 0;
  13. }
  14. }
  15. void rotate(int x)
  16. {
  17. int y = fa[x], z = fa[y], k = ch[y][1] == x, w = ch[x][k ^ 1];
  18. if (nroot(y)) { ch[z][ch[z][1] == y] = x; } ch[x][k ^ 1] = y, ch[y][k] = w;
  19. if (w) { fa[w] = y; } fa[y] = x; fa[x] = z; pushup(y), pushup(x);
  20. }
  21. void splay(int x)
  22. {
  23. int y = x, top = 0;
  24. st[++top] = y;
  25. while (nroot(y)) st[++top] = y = fa[y];
  26. while (top > 0) pushdown(st[top--]);
  27. while (nroot(x))
  28. {
  29. int y = fa[x], z = fa[y];
  30. if (nroot(y)) rotate((ch[y][1] == x) ^ (ch[z][1] == y) ? x : y);
  31. rotate(x);
  32. }
  33. pushup(x);
  34. }
  35. void access(int x)
  36. {
  37. for (int y = 0; x > 0; x = fa[y = x])
  38. splay(x), ch[x][1] = y, pushup(x);
  39. }
  40. void makert(int x)
  41. {
  42. access(x), splay(x), rev(x);
  43. }
  44. int findrt(int x)
  45. {
  46. access(x), splay(x);
  47. while (ch[x][0]) pushdown(x), x = ch[x][0];
  48. return x;
  49. }
  50. void link(int x, int y)
  51. {
  52. makert(x);
  53. if (findrt(y) != x) fa[x] = y;
  54. }
  55. void cut(int x, int y)
  56. {
  57. makert(x);
  58. if (findrt(y) == x && fa[x] == y && ch[x][1] == 0)
  59. ch[y][0] = fa[x] = 0, pushup(y);
  60. }

upd:压行Link-Cut Tree模板

  1. bool nroot(int x) { return ch[fa[x]][0] == x || ch[fa[x]][1] == x; }
  2. void rev(int x) { swap(ch[x][0], ch[x][1]), lazy[x] ^= 1; }
  3. void pushup(int x) { /*维护一个pre*/ }
  4. void pushdown(int x) { if (lazy[x]) { if (ch[x][0]) { rev(ch[x][0]); } if (ch[x][1]) { rev(ch[x][1]); } lazy[x] = 0; } }
  5. void rotate(int x)
  6. {
  7. int y = fa[x], z = fa[y], k = ch[y][1] == x, w = ch[x][k ^ 1];
  8. if (nroot(y)) { ch[z][ch[z][1] == y] = x; } ch[x][k ^ 1] = y, ch[y][k] = w;
  9. if (w) { fa[w] = y; } fa[y] = x; fa[x] = z; pushup(y), pushup(x);
  10. }
  11. void splay(int x)
  12. {
  13. int y = x, top = 0; st[++top] = y; while (nroot(y)) { st[++top] = y = fa[y]; } while (top > 0) { pushdown(st[top--]); }
  14. while (nroot(x)) { int y = fa[x], z = fa[y]; if (nroot(y)) { rotate((ch[y][1] == x) ^ (ch[z][1] == y) ? x : y); } rotate(x); }
  15. }
  16. void access(int x) { for (int y = 0; x > 0; x = fa[y = x]) splay(x), ch[x][1] = y, pushup(x); }
  17. void makert(int x) { access(x), splay(x), rev(x); }
  18. int findrt(int x) { access(x), splay(x); while (ch[x][0]) { pushdown(x), x = ch[x][0]; } return x; }
  19. void link(int x, int y) { makert(x); if (findrt(y) != x) fa[x] = y; }
  20. void cut(int x, int y) { makert(x); if (findrt(y) == x && fa[x] == y && ch[x][1] == 0) ch[y][0] = fa[x] = 0, pushup(y); }

通用动态树(Link-Cut Tree)模板的更多相关文章

  1. 动态树(Link Cut Tree) :SPOJ 375 Query on a tree

    QTREE - Query on a tree #number-theory You are given a tree (an acyclic undirected connected graph) ...

  2. 洛谷P3690 Link Cut Tree (模板)

    Link Cut Tree 刚开始写了个指针版..调了一天然后放弃了.. 最后还是学了黄学长的板子!! #include <bits/stdc++.h> #define INF 0x3f3 ...

  3. 【模板篇】Link Cut Tree模板(指针)

    网上一片一片的LCT都是数组写的 orz 用指针写splay的人想用指针写LCT找板子都不好找QAQ 所以能A题了之后自然要来回报社会, 把自己的板子丢上来(然而根本没有人会看) LCT讲解就省省吧, ...

  4. 【BZOJ 3282】Tree Link Cut Tree模板题

    知道了为什么要换根(changeroot),access后为什么有时要splay,以及LCT的其他操作,算是比较全面的啦吧,,, 现在才知道这些,,,真心弱,,, #include<cstdio ...

  5. link cut tree模板(LCT模板)

    update:2017.09.26 #include <bits/stdc++.h> using namespace std; struct Link_Cut_Tree { + ; ], ...

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

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

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

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

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

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

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

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

  10. LuoguP3690 【模板】Link Cut Tree (动态树) LCT模板

    P3690 [模板]Link Cut Tree (动态树) 题目背景 动态树 题目描述 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两 ...

随机推荐

  1. C#带百分比的进度条

    功能需求: 如果程序中会执行一个耗时的计算过程,我想在用户点击按钮后,弹出一个进度条窗口,显示正在执行的进度(最好能带有百分比),执行完成后,进度条窗口关闭,回到主程序窗口. 在关闭子窗口之前父窗体不 ...

  2. oracle误删数据的解决方法

    之前不小心误删了一条数据,索性我还记得id,通过select * from 表名 as of timestamp to_timestamp('2017-6-23 9:10:00','yyyy-mm-d ...

  3. 22-从零玩转JavaWeb-代码块

    配套详解视频 局部代码块与初始化代码块 面向对象-静态代码块 代码块总结 组合关系与类的加载 静态代码块及字段初始化练习 一.什么是代码块 在类中或方法当中 使用{}括起来的一段代码 就称它是一个代码 ...

  4. MySQL与SQLServer的update left join语法区别

    需求: 表A 字段 A_ID, A_NAME, B_ID 表B 字段 B_ID, B_NAME 需求把A的所有A_NAME更新为相应的B的 B_NAME. mysql做法: UPDATE A LEFT ...

  5. Eclipse 控制台不显示打印信息的处理方法

    1.进windows菜单 -> show view -> console2.还是windows菜单里面 -> preferences -> 打开左边的run/debug -&g ...

  6. Android 模拟MotionEvent事件 触发输入法

    Android 模拟MotionEvent事件 触发输入法   android输入法layoutbutton文本编辑encoding 关键词:MotionEvent,模拟按键,模拟点击事件,主动弹出输 ...

  7. windows7 Sql server 2012 尝试读取或写入受保护的内存。这通常指示其他内存已损坏的修复

    项目中,使用了sql server2012数据库,服务端是2012,客户端如果是2008的话,就会报错: 索引错误. 没办法,就安装了sql server2012客户端.但是还是报错,无法连上数据库服 ...

  8. 运单waybill快速录入

    运单waybill快速录入 前台页面: 1修改页面onAfterEdit事件, 后台代码:ajax响应回请求1 为成功,0 为失败

  9. Windows cmd 快捷操作

    复制当前文件夹下符合条件的文件名字到文件 dir /B *-gd.dll > debug /B是只显示文件名,不包含所在路径 复制当前文件夹下文件到另外的地方 xcopy /s/d *-gd.d ...

  10. 在Linux中监视IO性能

    dd命令 iostat命令 理解iostat的各项输出 iostat的应用实例 附:在Windows中监视IO性能 延伸阅读 dd命令 dd其实是工作于比较低层的一个数据拷贝和转换的*nix平台的工具 ...