首页 > 代码库 > HYSBZ_1854_并查集
HYSBZ_1854_并查集
http://www.lydsy.com/JudgeOnline/problem.php?id=1854
每次判断每组两个数的根,若不等,则小的遍历1,大的为根,若相等,则说明前面的小的都遍历过,根遍历1。最后判断vis即可。
#include<iostream>#include<cstdio>using namespace std;int pre[1000005],vis[1000005] = {0};int findd(int x){ int root = x; while(root != pre[root]) root = pre[root]; int temp; while(x != pre[x]) { temp = pre[x]; pre[x] = root; x = temp; } return root;}void join(int x,int y){ int xx = findd(x),yy = findd(y); if(xx == yy) vis[xx] = 1; else { if(xx > yy) swap(xx,yy); pre[xx] = yy; vis[xx] = 1; }}int main(){ int n; scanf("%d",&n); for(int i = 1;i <= 100005;i++) pre[i] = i; while(n--) { int a,b; scanf("%d%d",&a,&b); join(a,b); } int i; for(i = 1;i <= n;i++) { if(vis[i] == 0) break; } printf("%d",i-1); return 0;}
HYSBZ_1854_并查集
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。