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


    编程五分钟,调试两小时...
  • 相关阅读:
    PAT A1023 Have Fun with Numbers (20) [⼤整数运算 高精度]
    算法笔记-数学问题-高精-大整数
    PAT A1130 Infix Expression (25) [中序遍历]
    PAT A1130 Infix Expression (25分) [二叉树中序遍历 中缀表达式]
    PAT A1129 Recommendation System (25) [set的应⽤,运算符重载]
    PAT A1118 Birds in Forest (25) [并查集]
    PAT A1124 Raffle for Weibo Followers (20分) [map vector]
    C++ STL
    PAT A1121 Damn Single (25) [map set hash]
    算法笔记-易错记录
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12027108.html
Copyright © 2011-2022 走看看