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;
     } 
    


    编程五分钟,调试两小时...
  • 相关阅读:
    关于缓存技术
    很好的C程序
    静态变量和非静态变量
    关于系统
    数据存储
    access判断查询的结果是否为空,等同于SQL ISNULL()
    Access数据库常用函数大全
    MM 常用表
    SAP AFS BAPI 不允许业务对象 BUS2032 和销售凭证类别 H 的组合
    ABAP 语言特色
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12027108.html
Copyright © 2011-2022 走看看