美文网首页
PAT甲级A1107---并查集

PAT甲级A1107---并查集

作者: 1nvad3r | 来源:发表于2020-08-27 10:25 被阅读0次

1107 Social Clusters (30分)

1107
分析:

有n个人,每个人有若干爱好,如果两个人有任意一个相同爱好,则他们属于同一个社交网络, 求这n个人总共形成了多少个社交网络。

C++:
#include <cstdio>
#include <algorithm>

using namespace std;
const int maxn = 1010;
int father[maxn];
int isRoot[maxn];
int hobby[maxn];//记录任意一个喜欢活动h的人的编号
int n;

bool cmp(int a, int b) {
    return a > b;
}

void init() {
    for (int i = 1; i <= n; i++) {
        father[i] = i;
    }
}

int findFather(int x) {
    int temp = x;
    while (x != father[x]) {
        x = father[x];
    }
    while (temp != father[temp]) {
        father[temp] = x;
        temp = father[temp];
    }
    return x;
}

void Union(int a, int b) {
    int faA = findFather(a);
    int faB = findFather(b);
    if (faA != faB) {
        father[faA] = faB;
    }
}

int main() {
    scanf("%d", &n);
    init();
    int k, h;
    for (int i = 1; i <= n; i++) {
        scanf("%d:", &k);
        for (int j = 0; j < k; j++) {
            scanf("%d", &h);
            if (hobby[h] == 0) {
                hobby[h] = i;
            }
            Union(i, findFather(hobby[h]));
        }
    }
    for (int i = 1; i <= n; i++) {
        isRoot[findFather(i)]++;
    }
    int res = 0;
    for (int i = 1; i <= n; i++) {
        if (isRoot[i] != 0) {
            res++;
        }
    }
    printf("%d\n", res);
    sort(isRoot + 1, isRoot + n + 1, cmp);
    for (int i = 1; i <= res; i++) {
        printf("%d", isRoot[i]);
        if (i != res) {
            printf(" ");
        }
    }
    return 0;
}

相关文章

  • PAT甲级A1107---并查集

    1107 Social Clusters (30分) 分析: 有n个人,每个人有若干爱好,如果两个人有任意一个相同...

  • 并查集模板

    以PAT甲级1114为例,写了个并查集模板,记录下来。题目就不列了,感兴趣去官网找一下

  • PAT A1001 A+B Format (20)

    PAT A1001 A+B Format 原题链接PAT甲级题目目录(简书)PAT甲级题目目录(CSDN)在CSD...

  • 字符串输入问题

    PAT 甲级 1100 People on Mars count their numbers with base ...

  • markdown学习

    #并查集 ##并查集的定义 ##并查集的操作

  • PAT甲级题解 全部 JAVA版 持续更新

      临近过年,闲来无事。恰逢弟弟准备考PAT甲级,总是问我一些问题。又见网上PAT甲级多为c/c++版本的答案。罕...

  • 算法模板(四)并查集

    并查集 路径压缩并查集

  • 并查集入门使用

    本文参考自《算法笔记》并查集篇 并查集的定义 什么是并查集?并查集可以理解为是一种维护数据集合的结构。名字中并查集...

  • 并查集练习

    并查集 参考《算法笔记》 三要素:并,查,集。 并差集与一个算法有关,kruskal算法,就可通过并查集实现。 1...

  • PAT甲级 1043 Is It a Binary Search

    原题链接 PAT甲级 1043 Is It a Binary Search Tree (25 分) 题目大意 给定...

网友评论

      本文标题:PAT甲级A1107---并查集

      本文链接:https://www.haomeiwen.com/subject/knfcsktx.html