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

蓝桥 历届试题 合根植物

时间:2020-06-20 13:35:37      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:for   历届试题   试题   简单   namespace   ios   代码   oid   std   

虽然思路很简单是裸的并查集,但是代码要注意细节,我在写的时候就忘了写判断语句 if(af != bf) f[bf] = a;

#include <iostream>
#include <cstdio>
using namespace std;
const int maxn = 1e6+50;
int n,m,t,f[maxn];
int getf(int x)
{
	if(f[x] == x) return x;
	f[x] = getf(f[x]);
	return f[x];
}
void merge(int a,int b){
	int af = getf(a);
	int bf = getf(b);
	if(af != bf) f[bf] = a; //就是这!!只有两个人属于不同首领才进行融合!!
}
int main()
{
	scanf("%d%d",&n,&m); 
	for(int i = 1; i <= n*m; i++) f[i] = i;
	scanf("%d",&t);
	for(int i = 1; i <= t; i++){
		int x,y;
		scanf("%d%d",&x,&y);
		merge(x,y);
	}
	int ans = 0;
	for(int i = 1; i <= n*m; i++) cout<<i<<" ";
	cout<<endl; 
	for(int i = 1; i <= n*m; i++){
		if(f[i] == i) ans++;
		cout<<f[i]<<" ";
	}
	cout<<ans<<endl;
	return 0;
}

总结:并查集在融合时的判断语句!在融合时的判断语句!在融合时的判断语句!重要的说三遍!!

蓝桥 历届试题 合根植物

标签:for   历届试题   试题   简单   namespace   ios   代码   oid   std   

原文地址:https://www.cnblogs.com/Beic233/p/13168227.html

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