zoukankan      html  css  js  c++  java
  • pat甲级 1107. Social Clusters (30)

    When register on a social network, you are always asked to specify your hobbies in order to find some potential friends with the same hobbies. A "social cluster" is a set of people who have some of their hobbies in common. You are supposed to find all the clusters.

    Input Specification:

    Each input file contains one test case. For each test case, the first line contains a positive integer N (<=1000), the total number of people in a social network. Hence the people are numbered from 1 to N. Then N lines follow, each gives the hobby list of a person in the format:

    Ki: hi[1] hi[2] ... hi[Ki]

    where Ki (>0) is the number of hobbies, and hi[j] is the index of the j-th hobby, which is an integer in [1, 1000].

    Output Specification:

    For each case, print in one line the total number of clusters in the network. Then in the second line, print the numbers of people in the clusters in non-increasing order. The numbers must be separated by exactly one space, and there must be no extra space at the end of the line.

    Sample Input:

    8
    3: 2 7 10
    1: 4
    2: 5 3
    1: 4
    1: 3
    1: 4
    4: 6 8 1 5
    1: 4
    

    Sample Output:

    3
    4 3 1

    分析:并查集的简单应用:解决关键是将人属于同一集合的合并起来,本题应该通过相同的爱好合并起来;
    #include <cstdio>
    #include <vector>
    #include <algorithm>
    using namespace std;
    
    vector<int> father(1005), num(1005);
    int cnt;//记录集合数
    
    //sort()从大到小排序比较函数
    bool cmp(int a, int b){
        return a > b;
    }
    
    //初始化,每个人属于不同集合
    void init(int n){
        for(int i = 1; i <= n; i++){
            father[i] = i;
        }
    }
    
    int GetParent(int x){
        if(x == father[x])
            return x;
        father[x] = GetParent(father[x]);//路径压缩
        return father[x];
    }
    
    
    void merge(int x, int y){
        int fx = GetParent(x);
        int fy = GetParent(y);
        if(fx != fy){
            cnt--;//不属于同一集合,合并之后集合数减一
            father[fy] = fx;
        }
    }
    
    int main(){
        int n, k, h, i;
        int hobby[1005] = {0};
        scanf("%d", &n);
    
        //调用初始化函数
        init(n);
    
        cnt = n;//初始化集合数为n
        
        //处理输入数据,合并集合
        for(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;
                merge(hobby[h], i);
            }
        }
        for(i = 1; i <= n; i++)
            //这里一定要注意,要找到i所属集合的根节点,num加一,num[father[i]]++是有问题的,因为
            //这棵树深度不一定是2.。。即father[i]不一定是i所属集合的根节点
            num[GetParent(i)]++;
    
        printf("%d
    ", cnt);
    
        sort(num.begin(), num.end(), cmp);
    
        printf("%d", num[0]);
        for(i = 1; i < cnt ; i++)
            printf(" %d", num[i]);
        return 0;
    }
     
  • 相关阅读:
    poj_1236 强连通分支
    【winform程序】自定义webrowser控件调用IE的版本
    【小程序开发】微信小程序开发中遇到的那些坑...
    【C#多线程】C#多线程 Thread 开发基础
    【管理心得】不懂带人,你就自己干到死
    【80端口占用】win7下80端口被(Pid=4)占用的解决方法
    【顽固BUG】Visual Studio 2015 + TestDriven.NET-3.8.2860_Personal_Beta 调用的目标发生了异常。
    【HPP开发】让所有中小企业拥有自己的APP
    【创业积累】如何快速开发出一个高质量的APP
    【架构师之路】依赖注入原理---IoC框架
  • 原文地址:https://www.cnblogs.com/qinduanyinghua/p/6431840.html
Copyright © 2011-2022 走看看