More is better
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 327680/102400 K (Java/Others)Total Submission(s): 13457 Accepted Submission(s): 4917
Mr Wang selected a room big enough to hold the boys. The boy who are not been chosen has to leave the room immediately. There are 10000000 boys in the room numbered from 1 to 10000000 at the very beginning. After Mr Wang's selection any two of them who are still in this room should be friends (direct or indirect), or there is only one boy left. Given all the direct friend-pairs, you should decide the best way.
4 1 2 3 4 5 6 1 6 4 1 2 3 4 5 6 7 8
4 2HintA and B are friends(direct or indirect), B and C are friends(direct or indirect), then A and C are also friends(indirect). In the first sample {1,2,5,6} is the result. In the second sample {1,2},{3,4},{5,6},{7,8} are four kinds of answers.
先合并,合并好之后,算出每棵树的节点数,选出最大节点数目
#include<stdio.h>
int tree[10000001];
int root[10000001];
void init(){
for(int i=1;i<10000001;i++){
tree[i]=i;
root[i]=0;
}
}
int findx(int x)//压缩路径
{
if(x!=tree[x]){
tree[x]=findx(tree[x]);
}
return tree[x];
}
int findx1(int x)//普通版
{
int r;
r=x;
while(tree[r]!=r)
r=tree[r];
return r;
}
void merge(int x,int y){
int fx=findx(x);
int fy=findx(y);
if(fx!=fy){
tree[fy]=fx;
}
}
int main(){
freopen("in.txt","r",stdin);
int zu;
while(scanf("%d",&zu)!=EOF){
init();
int zuu=zu;
while(zu--){
int a,b;
scanf("%d%d",&a,&b);
merge(a,b);
}
int max=0;
for(int i=1;i<=2*zuu;i++){
int roott=findx(i);
root[roott]++;
if(root[roott]>max){
max=root[roott];
}
}
if(max==0){
max=1;
}
printf("%d\n",max);
}
return 0;
}