洛谷P3367 模板并查集

Posted Surpassion

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了洛谷P3367 模板并查集相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
using namespace std;
int fa[10005],n,m,type,a,b;

int father(int x)
{
	if (fa[x] == x) return x;
	fa[x] = father(fa[x]);
	return fa[x];
}
int main()
{
	scanf("%d %d",&n,&m);
	for (int i = 1 ; i <= n ; i ++) fa[i] = i;
	for (int i = 1 ; i <= m ; i ++)
	{
		scanf("%d %d %d",&type,&a,&b);
		if (type == 1) 
		{
			int u = father(a) , v = father(b);
			fa[u] = v;
		}
		else if (father(a) == father(b)) cout<<"Y"<<endl; else cout<<"N"<<endl;
	}
	return 0;
}

  

以上是关于洛谷P3367 模板并查集的主要内容,如果未能解决你的问题,请参考以下文章

洛谷 P3367 并查集模板

洛谷 P3367 模板并查集

洛谷P3367 模板并查集

洛谷 P3367 模板并查集

洛谷 P3367 模板并查集

洛谷 P3367- 并查集(Java模板)