1213 How Many Tables 并查集 / 简单
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1213 How Many Tables 并查集 / 简单相关的知识,希望对你有一定的参考价值。
http://acm.hdu.edu.cn/showproblem.php?pid=1213
经典的并查集题:
#include<cstdio>
#include<iostream>
using namespace std;
const int N=1e3+5;
int p[N];
int find(int x)
{
if(x!=p[x]) p[x]=find(p[x]);
return p[x];
}
int main(void)
{
int t; cin>>t;
while(t--)
{
int n,m; cin>>n>>m;
for(int i=1;i<=n;i++) p[i]=i; //初始化
for(int i=1;i<=m;i++)
{
int a,b; cin>>a>>b;
p[find(a)]=find(b);//合并
}
int ans=0;
for(int i=1;i<=n;i++)
{
if(i==p[i]) ans++;//看有几个头节点
}
cout<<ans<<endl;
}
return 0;
}
以上是关于1213 How Many Tables 并查集 / 简单的主要内容,如果未能解决你的问题,请参考以下文章
HDU - 1213 How Many Tables [并查集]
HDU 1213 How Many Tables [并查集]