zoukankan      html  css  js  c++  java
  • More is better

    Problem Description
    Mr Wang wants some boys to help him with a project. Because the project is rather complex, the more boys come, the better it will be. Of course there are certain requirements.

    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.
     

    Input
    The first line of the input contains an integer n (0 ≤ n ≤ 100 000) - the number of direct friend-pairs. The following n lines each contains a pair of numbers A and B separated by a single space that suggests A and B are direct friends. (A ≠ B, 1 ≤ A, B ≤ 10000000)
     

    Output
    The output in one line contains exactly one integer equals to the maximum number of boys Mr Wang may keep. 
     

    Sample Input
    4 1 2 3 4 5 6 1 6 4 1 2 3 4 5 6 7 8
     

    Sample Output
    4 2
    Hint
    A 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<cstdio>
    #include<cstring>
    int pre[10000001];
    int shu[10000001];
     int max;
    int find(int p)
    {
      int r=p;         
      while(r!=pre[r]) 
      r=pre[r]; 
      int i=p,j;      
      while(i!=r)
       {
       j=pre[i];pre[i]=r;i=j;
      }
     return r; 
    } 
    void dabiao()
    {
    	int i;
    	for(i=1;i<10000001;i++)
      {
      	pre[i]=i;
      	shu[i]=1;
      }
    }
    void merge(int x,int y)
    {
      
    	int fx=find(x);
    	int fy=find(y);
    	if(fx!=fy)
    	{
    		pre[fx]=fy; 
    	    shu[fy]=shu[fy]+shu[fx];
    	  if(max<shu[fy])
    	    {
    	     max=shu[fy];
    		}
    	}
    	
    }
    int main()
    {
    	
    	int n;
    	while(scanf("%d",&n)!=EOF)
    	{
             if(n==0)
             {
            printf("1
    ");
            continue;
    		 }
    		max=0;
    			dabiao();
    	   while(n--)
    	   {
    	   	    int u,v;
    	   	scanf("%d%d",&u,&v);
    	      merge(u,v);   
    	    }
    	  printf("%d
    ",max); 
    	  }
    	return 0;
     } 
    


    编程五分钟,调试两小时...
  • 相关阅读:
    contest hunter5105 Cookies
    bzoj2599: [IOI2011]Race
    poj1741 Tree
    bzoj2527: [Poi2011]Meteors
    bzoj3673: 可持久化并查集 by zky&&3674: 可持久化并查集加强版
    bzoj2741: 【FOTILE模拟赛】L
    bzoj3110: [Zjoi2013]K大数查询
    bzoj1901: Zju2112 Dynamic Rankings
    bzoj2821: 作诗(Poetize)
    poj1417 True Liars
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12027108.html
Copyright © 2011-2022 走看看