码迷,mamicode.com
首页 > 其他好文 > 详细

并查集——poj1611(入门)

时间:2017-08-10 11:44:21      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:return   font   class   stream   spec   find   int   blog   ios   

传送门:The Suspects

  • 并查集水题
    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    using namespace std;
    
    const int maxn = 50005;
    int n,m;
    int a[maxn],b,ans;
    int pre[maxn];
    
    void init()
    {
    	for(int i=0;i<n;i++){
    		pre[i] = i;
    	}
    }
    
    int findPre(int x)  
    {  
         if(pre[x]==x)  
            return x;  
        else  
            return pre[x]=findPre(pre[x]);  
    }  
    
    void unite(int x,int y)
    {
    	x = findPre(x);
    	y = findPre(y);
    	if(x==y)	return;
    	pre[y] = x;				//y的上级变为x的祖先节点 			
    }
    
    int main()
    {
    	while(scanf("%d%d",&n,&m) && !(n==0&&m==0)){
    		init();
    		int num,sum=0;
    		for(int i=0;i<m;i++){
    			scanf("%d",&num);
    			if(num>=1){
    				for(int j=0;j<num;j++){
    					scanf("%d",&a[j]);
    				}
    				for(int j=1;j<num;j++){
    					unite(a[0],a[j]);
    				}
    				
    			}
    		}
    		for(int i=0;i<n;i++){
    			if(findPre(i) == pre[0]){
    				sum++;
    			}
    		}
    		printf("%d\n",sum);
    	}
    	return 0;
    }
    

     

并查集——poj1611(入门)

标签:return   font   class   stream   spec   find   int   blog   ios   

原文地址:http://www.cnblogs.com/xzxl/p/7338035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!