国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

A1107. Social Clusters (30)

2019-11-10 18:15:45
字體:
來源:轉載
供稿:網友

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:
83: 2 7 101: 42: 5 31: 41: 31: 44: 6 8 1 51: 4Sample Output:
34 3 1
#include <cstdio>#include <vector>#include <algorithm>using namespace std;vector<int> father, isRoot;int cmp1(int a, int b){    return a > b;}int findFather(int x) {    int a = x;    while(x != father[x])//原來的x和father[x]不相等,說明x所在不是根節點        x = father[x];    while(a != father[a]) {        int z = a;        a = father[a];        father[z] = x;    }//其實就是father[a]=x;a=father[a];依次向上,將所有的father都寫成根節點    return x;}void Union(int a, int b) {    int faA = findFather(a);    int faB = findFather(b);    if(faA != faB)        father[faA] = faB;}int main() {    int n, k, t, cnt = 0;//記錄集合數目cnt    int course[1001] = {0};    scanf("%d", &n);    father.resize(n + 1);    isRoot.resize(n + 1);    for(int i = 1; i <= n; i++)        father[i] = i;    for(int i = 1; i <= n; i++) {        scanf("%d:", &k);        for(int j = 0; j < k; j++) {            scanf("%d", &t);            if(course[t] == 0)                course[t] = i;            Union(i, findFather(course[t]));        }    }    for(int i = 1; i <= n; i++)        isRoot[findFather(i)]++;//存的是人數了    for(int i = 1; i <= n; i++) {        if(isRoot[i] != 0)            cnt++;    }    printf("%d/n", cnt);    sort(isRoot.begin(), isRoot.end(), cmp1);    for(int i = 0; i < cnt; i++) {        printf("%d", isRoot[i]);        if(i != cnt - 1) printf(" ");    }    return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 柳江县| 德庆县| 建水县| 广德县| 涞水县| 汪清县| 哈尔滨市| 长兴县| 滦南县| 赤城县| 冀州市| 微山县| 南漳县| 文化| 景宁| 德安县| 镇远县| 阜新市| 德安县| 佳木斯市| 尚义县| 科尔| 革吉县| 施秉县| 秦皇岛市| 新闻| 普兰店市| 额敏县| 兴宁市| 香港 | 蒙自县| 濉溪县| 喀喇沁旗| 东丽区| 星子县| 磴口县| 南开区| 监利县| 景德镇市| 焦作市| 大同市|