Luogu 3402 可持久化并查集
点开这题纯属无聊……不过既然写掉了,那就丢一个模板好了
不得不说,可持久化并查集实现真的很暴力,就是把并查集的数组弄一个主席树可持久化。
有一点要注意的是不能写路径压缩,这样跳版本的时候会错,所以弄一个按秩合并来降低时间复杂度。
总时间复杂度$O(nlog^2n)$。
听说用siz实现按秩合并会比较好,因为这样还能查询集合大小,有时间以后补上。
Code:
#include <cstdio>
using namespace std; const int N = 1e5 + ;
const int M = 2e5 + ; int n, qn; inline void read(int &X) {
X = ;
char ch = ;
int op = ;
for(; ch > ''|| ch < ''; ch = getchar())
if(ch == '-') op = -;
for(; ch >= '' && ch <= ''; ch = getchar())
X = (X << ) + (X << ) + ch - ;
X *= op;
} struct Node {
int lc, rc, dep, fa;
}; namespace PUfs {
Node s[N * ];
int root[M * ], nodeCnt; #define mid ((l + r) >> 1) void build(int &p, int l, int r) {
p = ++nodeCnt;
if(l == r) {
s[p].fa = l;
return;
} build(s[p].lc, l, mid);
build(s[p].rc, mid + , r);
} void modify(int &p, int l, int r, int x, int f, int pre) {
p = ++nodeCnt;
if(l == r) {
s[p].fa = f;
s[p].dep = s[pre].dep;
return;
} s[p].lc = s[pre].lc, s[p].rc = s[pre].rc;
if(x <= mid) modify(s[p].lc, l, mid, x, f, s[pre].lc);
else modify(s[p].rc, mid + , r, x, f, s[pre].rc);
} void add(int p, int l, int r, int x) {
if(l == r) {
s[p].dep++;
return;
}
if(x <= mid) add(s[p].lc, l, mid, x);
else add(s[p].rc, mid + , r, x);
} int query(int p, int l, int r, int x) {
if(l == r) return p; if(x <= mid) return query(s[p].lc, l, mid, x);
else return query(s[p].rc, mid + , r, x);
} int find(int now, int x) {
int f = query(now, , n, x);
if(s[f].fa == x) return f;
return find(now, s[f].fa);
} } using namespace PUfs; inline void print(int p) {
printf("%d: ", p);
for(int j = ; j <= n; j++)
printf("%d ", s[find(root[p], j)].fa);
/* for(int j = 1; j <= n; j++)
printf("%d ", query(root[p], 1, n, j)); */
printf("\n");
} inline void swap(int &x, int &y) {
int t = x;
x = y;
y = t;
} int main() {
read(n), read(qn); nodeCnt = ;
build(root[], , n); // print(0); for(int op, i = ; i <= qn; i++) {
read(op);
if(op == ) {
root[i] = root[i - ];
int x, y;
read(x), read(y);
int fx = find(root[i], x), fy = find(root[i], y);
if(s[fx].fa == s[fy].fa) continue;
if(s[fx].dep > s[fy].dep) swap(fx, fy);
modify(root[i], , n, s[fx].fa, s[fy].fa, root[i - ]);
if(s[fx].dep == s[fy].dep) add(root[i], , n, s[fy].fa);
}
if(op == ) {
int k;
read(k);
root[i] = root[k];
}
if(op == ) {
root[i] = root[i - ];
int x, y;
read(x), read(y);
int fx = find(root[i], x), fy = find(root[i], y);
if(s[fx].fa == s[fy].fa) puts("");
else puts("");
}
// print(i);
} return ;
}
Luogu 3402 可持久化并查集的更多相关文章
- 洛谷P4768 [NOI2018]归程 [可持久化并查集,Dijkstra]
题目传送门 归程 格式难调,题面就不放了. 分析: 之前同步赛的时候反正就一脸懵逼,然后场场暴力大战,现在呢,还是不会$Kruskal$重构树,于是就拿可持久化并查集做. 但是之前做可持久化并查集的时 ...
- 洛谷P3402 【模板】可持久化并查集 [主席树,并查集]
题目传送门 可持久化并查集 n个集合 m个操作 操作: 1 a b 合并a,b所在集合 2 k 回到第k次操作之后的状态(查询算作操作) 3 a b 询问a,b是否属于同一集合,是则输出1否则输出0 ...
- bzoj3673 & bzoj3674 & 洛谷P3402 可持久化并查集
题目:bzoj3673:https://www.lydsy.com/JudgeOnline/problem.php?id=3673 bzoj3674:https://www.lydsy.com/Jud ...
- 带撤销并查集 & 可持久化并查集
带撤销并查集支持从某个元素从原来的集合中撤出来,然后加入到一个另外一个集合中,或者删除该元素 用一个映射来表示元素和并查集中序号的关系,代码中用\(to[x]\) 表示x号元素在并查集中的 id 删除 ...
- [bzoj3673][可持久化并查集 by zky] (rope(可持久化数组)+并查集=可持久化并查集)
Description n个集合 m个操作 操作: 1 a b 合并a,b所在集合 2 k 回到第k次操作之后的状态(查询算作操作) 3 a b 询问a,b是否属于同一集合,是则输出1否则输出0 0& ...
- 【BZOJ-3673&3674】可持久化并查集 可持久化线段树 + 并查集
3673: 可持久化并查集 by zky Time Limit: 5 Sec Memory Limit: 128 MBSubmit: 1878 Solved: 846[Submit][Status ...
- bzoj3674 可持久化并查集
我是萌萌的任意门 可持久化并查集的模板题-- 做法好像很多,可以标号法,可以森林法. 本来有O(mloglogn)的神算法(按秩合并+倍增),然而我这种鶸渣就只会写O(mlog2n)的民科算法--再加 ...
- 【BZOJ3673】&&【BZOJ3674】: 可持久化并查集 by zky 可持久化线段树
没什么好说的. 可持久化线段树,叶子节点存放父亲信息,注意可以规定编号小的为父亲. Q:不是很清楚空间开多大,每次询问父亲操作后修改的节点个数是不确定的.. #include<bits/stdc ...
- 【BZOJ】3673: 可持久化并查集 by zky & 3674: 可持久化并查集加强版(可持久化线段树)
http://www.lydsy.com/JudgeOnline/problem.php?id=3674 http://www.lydsy.com/JudgeOnline/problem.php?id ...
随机推荐
- python编程实例-使用正则收集IP信息
#!/usr/bin/env python from subprocess import PIPE,Popen import re def getIfconfig(): p = Popen(['ifc ...
- 2017.11.27 stm8 low power-consumption debugging
1 STM8L+LCD The STM8L-DISCOVERY helps you to discover the STM8L ultralow power features and todevelo ...
- BEC translation exercise 7
在挑选时我们完全出自疏忽而漏过了这篇短文.In making the selection we passed this short piece by quite inadvertently. we l ...
- nginx RTMP FFmpeg 视频直播
/**************************************************************************** * nginx RTMP FFmpeg 视频 ...
- 洛谷 P1655 小朋友的球
题目描述 @发源于 小朋友最近特别喜欢球.有一天他脑子抽了,从口袋里拿出了N个不同的球,想把它们放到M个相同的盒子里,并且要求每个盒子中至少要有一个球,他好奇有几种放法,于是尝试编程实现,但由于他天天 ...
- UI及物体渲染顺序
1.决定UI渲染在所有物体前,ZTest Always,Canvas中的RenderMode影响该值. 2.都是ZTest Always 时影响覆盖的因素: 父子及先后关系: 渲染队列: sortin ...
- mysql之 xtrabackup原理、备份日志分析、备份信息获取
一. xtrabackup备份恢复工作原理: extrabackup备份简要步骤 InnoDB引擎很大程度上与Oracle类似,使用redo,undo机制,XtraBackup在备份的时候,以read ...
- k近邻算法C++二维情况下的实现
k近邻算法C++二维实现 这是一个k近邻算法的二维实现(即K=2的情况). #include <cstdio> #include <cstring> #include < ...
- MSSQL Join的使用
假设我们有下面两张表.表A在左边,表B在右边.我们给它们各四条记录. id name id name -- ---- -- ---- 1 Pirate 1 Rutabaga 2 Monkey 2 Pi ...
- JavaScript去除字符串两边空格trim
去除字符串左右两端的空格,在大部分编程语言中,比如PHP.vbscript里面可以轻松地使用 trim.ltrim 或 rtrim实现.但在js中却没有这3个内置方法,需要手工编写.下面的实现方法是用 ...