zoukankan      html  css  js  c++  java
  • ZOJ 3321 Circle【并查集】

    解题思路:给定n个点,m条边,判断是否构成一个环

    注意到构成一个环,所有点的度数为2,即一个点只有两条边与之相连,再有就是判断合并之后这n个点是否在同一个连通块

    Circle

    Time Limit: 1 Second      Memory Limit: 32768 KB

    Your task is so easy. I will give you an undirected graph, and you just need to tell me whether the graph is just a circle. A cycle is three or more nodes V1, V2, V3, ... Vk, such that there are edges between V1 and V2, V2 and V3, ... Vk and V1, with no other extra edges. The graph will not contain self-loop. Furthermore, there is at most one edge between two nodes.

    Input

    There are multiple cases (no more than 10).

    The first line contains two integers n and m, which indicate the number of nodes and the number of edges (1 < n < 10, 1 <= m < 20).

    Following are m lines, each contains two integers x and y (1 <= x, y <= n, x != y), which means there is an edge between node x and node y.

    There is a blank line between cases.

    Output

    If the graph is just a circle, output "YES", otherwise output "NO".

    Sample Input

    3 3
    1 2
    2 3
    1 3
    
    4 4
    1 2
    2 3
    3 1
    1 4
    

    Sample Output

    YES
    NO
    
    #include<iostream>  
    #include<cstdio>  
    #include<cstring>  
    #include<algorithm>  
    using namespace std;
    int degree[10010],pre[10010];
    
    int find(int root){ return root == pre[root] ? root : pre[root] = find(pre[root]); }
    void unionroot(int x,int y)
    {
    	int root1=find(x);
    	int root2=find(y);
    	if(root1!=root2)
    	pre[root1]=root2;
    }
    
    int main()
    {
    	int m,n,u,v,i,j;
    	while(scanf("%d %d",&n,&m)!=EOF)
    	{
    		int flag=1;
    		memset(degree,0,sizeof(degree));
    		for(i=1;i<=10010;i++)
    		pre[i]=i;
    		for(i=1;i<=m;i++)
    		{
    			scanf("%d %d",&u,&v);
    			degree[u]++;
    			degree[v]++;
    			unionroot(u,v);	
    		}
    		
    		for(i=1;i<=n;i++)
    		{
    			if(degree[i]!=2)
    			{
    				flag=0;
    				break;
    			}
    			if(find(i)!=find(n))
    			{
    				flag=0;
    				break;
    			}
    		}
    		if(flag)
    		printf("YES
    ");
    		else
    		printf("NO
    ");		
    	}
    }
    

      

  • 相关阅读:
    移动端hybrid开发复盘
    node/webpack 调试 loader 等技巧
    javascript(js)小数精度丢失的解决方案
    必经之路--买房之后需要走的流程--针对 组合贷款方式
    canvas 画半圆的两种方式
    svg path 画圆
    1.快速排序
    7.桥接设计模式
    6.适配器设计模式
    5.策略设计模式
  • 原文地址:https://www.cnblogs.com/wuyuewoniu/p/4254667.html
Copyright © 2011-2022 走看看