P3367 模板并查集
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P3367 模板并查集相关的知识,希望对你有一定的参考价值。
https://www.luogu.com.cn/problem/P3367
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
int p[N],n,m;
int find(int x)
{
if(x!=p[x]) p[x]=find(p[x]);
return p[x];
}
int main(void)
{
cin>>n>>m;
for(int i=1;i<=n;i++) p[i]=i;
while(m--)
{
int op,a,b; cin>>op>>a>>b;
if(op==1) p[find(b)]=find(a);
else
{
if(find(a)==find(b)) puts("Y");
else puts("N");
}
}
return 0;
}
以上是关于P3367 模板并查集的主要内容,如果未能解决你的问题,请参考以下文章