P1536 村村通 并查集求连通块个数

Posted SAOIRSE

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1536 村村通 并查集求连通块个数相关的知识,希望对你有一定的参考价值。

题目

https://www.luogu.com.cn/problem/P1536

 

 这道题第一眼的思路感觉是最小生成树,但是发现它的边没有权值,所以这道题的问题是求解这个图的连通块的个数,而需要连接的道路条数就是连通块的个数减一

代码

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
using namespace std;
int father[6000], ranks[6000];
int find(int x)
{
    if (father[x] == x)return x;
    return father[x] = find(father[x]);
}
void merge(int x, int y)
{
    int a = find(x);
    int b = find(y);
    if (a == b)return;
    if (ranks[a] > ranks[b])father[b] = a;
    else
    {
        father[a] = b;
        if (ranks[a] == ranks[b])ranks[b]++;
    }
}

int main()
{
    int n, m;
    while (1)
    {
        cin >> n;
        if (n == 0)return 0;
        cin >> m;
        for (int i = 1; i <= n; i++)father[i] = i;
        for (int i = 0; i < m; i++)
        {
            int a, b;
            scanf("%d%d", &a, &b);
            merge(a, b);
        }
        int count = 0;
        for (int i = 1; i <=n; i++)
        {
            if (father[i] == i)count++;
        }
        printf("%d\\n", count-1);
    }

}

 

以上是关于P1536 村村通 并查集求连通块个数的主要内容,如果未能解决你的问题,请参考以下文章

ABC206 D - KAIBUNsyo(思维,并查集求连通块大小)

Acwing 837. 连通块中点的数量 (裸题,并查集求连通块中点数目)

HDU 3018 Ant Trip (并查集求连通块数+欧拉回路)

C. Edgy Trees Codeforces Round #548 (Div. 2) 并查集求连通块

luogu P1536 村村通 题解

hdu 1213 How Many Tables(并查集求无向图有几个连通分量)