hdu 1213 How Many Tables(并查集求无向图有几个连通分量)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1213 How Many Tables(并查集求无向图有几个连通分量)相关的知识,希望对你有一定的参考价值。
代码:
#include<cstdio> #include<cstring> using namespace std; int n,m; int father[1005]; int Find(int a) { int r=a; while(father[a]!=a) { a=father[a]; } father[r]=a; return a; } void Union(int a,int b) { a=Find(a); b=Find(b); if(a!=b) father[b]=a; } int main() { int t; scanf("%d",&t); while(t--) { int ans=0; scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) { father[i]=i; } for(int i=1;i<=m;i++) { int a,b; scanf("%d%d",&a,&b); Union(a,b); } for(int i=1;i<=n;i++) { father[i]=Find(i); if(father[i]==i) ans++; } printf("%d\n",ans); } return 0; }
以上是关于hdu 1213 How Many Tables(并查集求无向图有几个连通分量)的主要内容,如果未能解决你的问题,请参考以下文章
HDU 1213 How Many Tables(模板——并查集)
HDU - 1213 How Many Tables(并查集)
HDU - 1213 How Many Tables [并查集]