Ubiquitous Religions
Time Limit: 5000MS |
|
Memory Limit: 65536K |
Total Submissions: 31746 |
|
Accepted: 15391 |
Description
There is, many different religions in the world today that it's difficult to keep track of them all. You is interested in finding-many different religions students in your university believe in.
You know that there is n students in your university (0 < n <= 50000). It is infeasible for your to ask every student their religious beliefs. Furthermore, many students is not comfortable expressing their beliefs. One-to-avoid these problems is-ask m (0 <= m <= N (n-1)/2) pairs of students and ask them whether they believe In the same religion (e.g they may know if they both attend the same church). From this data, you may not be know what is believes in, but can get a idea of the the upper bound of how many diff Erent religions can is possibly represented on campus. You may assume the student subscribes to the most one religion.
Input
The input consists of a number of cases. Each case starts with a line specifying the integers n and M. The next m lines each consists of both integers I and j, specifying that students I and J believe in the same religion. The students is numbered 1 to N. The end of input is specified by a line in which n = m = 0.
Output
For each test case, print to a single line the case number (starting with 1) followed by the maximum number of different R Eligions the students in the university believe in.
Sample Input
10 91 21 31 41 51 61 71 81 91 1010 42 34 54 85 80 0
Sample Output
Case 1:1case 2:7
Hint
Huge input, scanf is recommended.
Source
Alberta Collegiate Programming Contest 2003.10.18
#include <iostream> #include <cstdio>using namespace std; #define MAXSIZE 50050int Count=1;int pre[maxsize]; int init (int n) {for (int i=1;i<=n;i++) pre[i]=i;} int find (int x) { if (pre[x]==x) return x; int Tmp=find (pre[x]); return pre[x]=tmp;} int Union (int u,int v) { int p=find (u); int Q=find (v); if (p!=q) pre[p]=q;} int main () { int n,m; while (~SCANF ("%d%d", &n,&m) && (n| | m) { init (n); int a, B; while (m--) { scanf ("%d%d", &a,&b); Union (A, b); } int cnt=0; for (int i=1;i<=n;i++) { if (find (i) ==i) cnt++; } printf ("Case%d:%d\n", count++,cnt); } return 0;}
The main idea is: to investigate the total number of religious beliefs n students, given only the same two people, judging how many of the last total
POJ 2524~ and find out the basis of the collection