首页 > 代码库 > hdu 1213 并查集 水
hdu 1213 并查集 水
http://acm.hdu.edu.cn/showproblem.php?pid=1213
做到一道网赛题 2-sat可写 貌似并查集也可写 但是并查集做法没想到 先水几道并查集重新理解下然后再去做
学到的就一点 Father数组中有些值一直保持最初的father[x] == x 最终集合的个数可以通过这个判断
#include <cstdio> #include <cstring> #include <algorithm> #include <iostream> using namespace std; const int MAXN = 1000+100; int n,m; int father[MAXN]; int Find(int x) { if(x!=father[x]) father[x]=Find(father[x]); return father[x]; } void un(int x,int y) { x=Find(x); y=Find(y); if(x!=y)father[x]=y; } int main() { int ncase; scanf("%d",&ncase); while(ncase--) { scanf("%d%d",&n,&m); for(int i=0;i<=n;i++)father[i]=i; int u,v; for(int i=0;i<m;i++) { scanf("%d%d",&u,&v); un(u,v); } int ans=0; for(int i=1;i<=n;i++) if(i==father[i])ans++; printf("%d\n",ans); } return 0; }
hdu 1213 并查集 水
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。