码迷,mamicode.com
首页 > 其他好文 > 详细

【洛谷】P3367 【模板】并查集

时间:2017-11-30 22:13:56      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:names   can   mes   its   class   ret   cout   pre   并查集   

#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 【模板】并查集

标签:names   can   mes   its   class   ret   cout   pre   并查集   

原文地址:http://www.cnblogs.com/YMY666/p/7932075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!