codeforce round 170 A. Learning Languages

来源:互联网 发布:让子弹飞 隐喻 知乎 编辑:程序博客网 时间:2024/05/29 12:55
A. Learning Languages
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The "BerCorp" company has got n employees. These employees can usem approved official languages for the formal correspondence. The languages are numbered with integers from1 to m. For each employee we have the list of languages, which he knows. This list could be empty, i. e. an employee may know no official languages. But the employees are willing to learn any number of official languages, as long as the company pays their lessons. A study course in one language for one employee costs1 berdollar.

Find the minimum sum of money the company needs to spend so as any employee could correspond to any other one (their correspondence can be indirect, i. e. other employees can help out translating).

Input

The first line contains two integers n andm (2 ≤ n, m ≤ 100) — the number of employees and the number of languages.

Then n lines follow — each employee's language list. At the beginning of thei-th line is integer ki (0 ≤ ki ≤ m) — the number of languages thei-th employee knows. Next, the i-th line contains ki integers —aij (1 ≤ aij ≤ m) — the identifiers of languages thei-th employee knows. It is guaranteed that all the identifiers in one list are distinct. Note that an employee may know zero languages.

The numbers in the lines are separated by single spaces.

Output

Print a single integer — the minimum amount of money to pay so that in the end every employee could write a letter to every other one (other employees can help out translating).

Sample test(s)
Input
5 51 22 2 32 3 42 4 51 5
Output
0
Input
8 703 1 2 31 12 5 42 6 71 32 7 41 1
Output
2
Input
2 21 20
Output
1
这道题真的很奇怪,想了很久,也知道大概就是并查集。。。可就是想不到具体去,结果还是参考了一下别人的结题报告,才有了思路。。。
最主要的就是要将每个人当成一个节点,将他们懂的语言作为联系将他们连接起来,最后判断有几组并查集。。。
这里有特殊情况,就是有可能每个人懂的语言都不相通,这样的话,他们要学的语言就要比之前的还要多出一种
代码:
#include<iostream>#include<string.h>using namespace std;//int pre[100];int fa[105];int a[105][105];int times[105];int find(int re){    if(fa[re]==0){         return re;         }    else         return fa[re]=find(fa[re]);}int totether(int x,int y){    int pre1=find(x);    int pre2=find(y);    if(pre1==pre2)        return 0;    else{        fa[pre1]=pre2;        return 0;        }}int main(){    int n,m;    while(cin>>n>>m){        int flag=0;        memset(fa,0,sizeof(fa));       // memset(pre,0,sizeof(0));        memset(times,0,sizeof(times));        for(int i=1;i<=n;i++){                int temp;                cin>>temp;                if(temp>0)                    flag=1;                for(int j=0;j<temp;j++){                        int temp1;                        cin>>temp1;                        a[temp1][times[temp1]++]=i;                        }                        }        for(int k=1;k<=m;k++){                for(int g=1;g<times[k];g++){                        totether(a[k][g-1],a[k][g]);                        }                        }        int res=0;        for(int i=1;i<=n;i++){                if(fa[i]==0){                      res++;                      }                      }        if(flag==0)                cout<<res<<endl;        else                cout<<res-1<<endl;                }     return 0;     }     


原创粉丝点击