zoukankan      html  css  js  c++  java
  • Pku 1611 The Suspects

    The Suspects

    Description

    Severe acute respiratory syndrome (SARS), an atypical pneumonia of unknown aetiology, was recognized as a global threat in mid-March 2003. To minimize transmission to others, the best strategy is to separate the suspects from others.
    In the Not-Spreading-Your-Sickness University (NSYSU), there are many student groups. Students in the same group intercommunicate with each other frequently, and a student may join several groups. To prevent the possible transmissions of SARS, the NSYSU collects the member lists of all student groups, and makes the following rule in their standard operation procedure (SOP).
    Once a member in a group is a suspect, all members in the group are suspects.
    However, they find that it is not easy to identify all the suspects when a student is recognized as a suspect. Your job is to write a program which finds all the suspects.

    Input

    The input file contains several cases. Each test case begins with two integers n and m in a line, where n is the number of students, and m is the number of groups. You may assume that 0 < n <= 30000 and 0 <= m <= 500. Every student is numbered by a unique integer between 0 and n−1, and initially student 0 is recognized as a suspect in all the cases. This line is followed by m member lists of the groups, one line per group. Each line begins with an integer k by itself representing the number of members in the group. Following the number of members, there are k integers representing the students in this group. All the integers in a line are separated by at least one space.
    A case with n = 0 and m = 0 indicates the end of the input, and need not be processed.

    Output

    For each case, output the number of suspects in one line.

    Sample Input

    100 4
    2 1 2
    5 10 13 11 12 14
    2 0 1
    2 99 2
    200 2
    1 5
    5 1 2 3 4 5
    1 0
    0 0

    Sample Output

    4
    1
    1

    题意:
    给出人数n和人数里的人群数m,同个群的人属于一个集合。求与编号0的人同个集合的人数(包括0本身)

    代码入下:

     1 #include<stdio.h>
     2 int father[30001];
     3 
     4 void setfather(int n)
     5 {
     6     for(int i=0;i<n;++i)
     7         father[i]=-1;//father数组存储该树所有节点数之和与(-1)的乘积,很巧妙
     8 }
     9 
    10 int find_root(int a)//寻找根节点
    11 {
    12     while(father[a]>0)
    13         a=father[a];
    14     return a;
    15 }
    16 
    17 void merge(int a,int b)
    18 {
    19     a=find_root(a);
    20     b=find_root(b);
    21     if(a!=b)
    22     {
    23         if(father[a]<father[b])//但此时father[a]的绝对值大于father[b]
    24         {
    25             father[a]+=father[b];
    26             father[b]=a;
    27         }
    28         else
    29         {
    30             father[b]+=father[a];
    31             father[a]=b;
    32         }
    33     }
    34 }
    35 
    36 int main()
    37 {
    38     int i,j,n,m,a,b,k;
    39     while(scanf("%d%d",&n,&m),n||m)
    40     {
    41         setfather(n);
    42         for(i=0;i<m;++i)
    43         {
    44             scanf("%d%d",&k,&a);
    45             for(j=1;j<k;++j)
    46             {
    47                 scanf("%d",&b);
    48                 merge(a,b);
    49             }
    50         }
    51         printf("%d\n",father[find_root(0)]*(-1));
    52     }
    53     return 0;
    54 }
    功不成,身已退
  • 相关阅读:
    如何将PDF转换成word文档
    pdf转换成word教程
    VMware Net 模式网络配置
    多系统引导-refind
    Linux 磁盘分区调整工具
    Centos 8 安装 docker
    Centos 8 安装 gitlab13
    Centos 8 安装压缩版 mysql-8.0.21-el7-x86_64.tar.gz
    CentOS 添加用户并赋予管理员权限
    Centos 7 防火墙(firewall-cmd)添加端口访问
  • 原文地址:https://www.cnblogs.com/dongsheng/p/2600952.html
Copyright © 2011-2022 走看看