鱼C论坛

 找回密码
 立即注册
查看: 1493|回复: 0

[技术交流] PTA A_1107 Social Clusters

[复制链接]
发表于 2020-2-15 11:24:47 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
传送门:https://pintia.cn/problem-sets/9 ... /994805361586847744

解:
并查集
#include<cstdio>
#include<algorithm>

using namespace std;

int father[1010], hobby[1010] = {0};

int find_root(int n)
{
    int r = n;

    while (r != father[r])
        r = father[r];
    
    while (n != father[n])
    {
        int z = n;
        n = father[n];
        father[z] = r;
    }

    return r;
}

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

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

int main(void)
{
    int n;

    scanf("%d", &n);
    for (int i = 1; i <= n; i++)
    {
        father[i] = i;

        int m;
        scanf("%d:", &m);
        while (m--)
        {
            int k;
            scanf("%d", &k);

            if (hobby[k]) 
                Union(hobby[k], i);
            else 
                hobby[k] = i;
        }
    }
    
    int cnt[1010] = {0};
    for (int i = 1; i <= n; i++)
        cnt[find_root(i)]++; 

    sort(cnt, cnt + 1010, cmp);

    int k = 0;
    while (cnt[k])
        k++;

    printf("%d\n", k);
    for (int i = 0; i < k; i++)
    {
        printf("%d", cnt[i]);
        if (i < k - 1)  putchar(' ');
    }

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 04:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表