一共两个操作:合并和查询。
开始是没有并集的,得先合并再查询。
#include<iostream>
using namespace std;
const int N = 100010;
int p[N];
int n, m;
//p[x]=find(p[x]),直到找到它的祖宗节点,之后返回祖宗节点的值,
// 每个节点的父节点的值都会变成祖宗节点的值,至此实现了路径压缩。
int find(int x) {
if (p[x] != x)p[x] = find(p[x]);
return p[x];
}
int main() {
cin >> n >> m;
for (int i = 1; i <= n; i++) p[i] = i;
while (m--)
{
char op[2];
int a, b;
cin >> op >> a >> b;
if (op[0] == 'M')//合并操作
p[find(a)] = find(b);
else
{
if (find(a) == find(b))puts("yes");
else puts("no");
}
}
}
标签:puts,int,查集,else,节点,find
From: https://www.cnblogs.com/windzhao6/p/18327082