Is It A Tree? (P1308)
  W79oLdECuAdO 2023年11月02日 19 0


做出很久以前没有做出来的题的感觉真爽。


题意:判断是否是树,满足条件(1、只有一个根;2、每一个儿子只有一个父亲;3、不能自己是自己的父亲;4、两父子不能重复)


思路:用并查集记录每一个点的父亲。


特别注意:如果有圈,普通的并查集会出现打圈,死循环(现象是:Memorry Exceeded)

解决方法:用rank[ ]记录每一个结点记录大概当了多少次父亲


#include<iostream>
#include<algorithm>

using namespace std;

//freopen("C://i.txt","r",stdin);

#define N 10001

int f[N];
bool flag;
bool vist[N];
int find(int k)
{
	if (k==f[k])
		return k;
	return f[k]=find(f[k]);
}
int rank[N];

void u(int x,int y)
{
	if (rank[x]>=rank[y])
	{
		rank[x]++;
		f[y]=x;
	}
	else
	{
		flag=false;
	}
}
int main()
{
	freopen("C://i.txt","r",stdin);
	int i,j,k;
	int x,y;
	int xx,yy;

	int num=0;
	while (true)
	{
		num++;
		for (k=1;k<N;k++)
			f[k]=k;
		memset(vist,false,sizeof(vist));
		memset(rank,0,sizeof(rank));
		flag=true;	
		while (true)
		{
			cin>>i>>j;
			if (i<1)
				break;	
			
			x=find(i);
			y=find(j);
			vist[i]=true;
			vist[j]=true;
		//	cout<<i<<' '<<j<<' '<<x<<' '<<y<<endl;
			if (y!=j)
				flag=false;
			if (x==y)
				flag=false;
			u(x,y);
	
		}
		if (i==-1)
			break;
			
		k=0;
		j=0;
		for (i=1;i<N;i++) if (vist[i])
		{
		
			x=find(i);
		//	cout<<x<<endl;
			if (k!=x)
			{
				k=x;
				j++;
			}
		//	cout<<i<<endl;	
		}
		if (j>1)
			flag=false;
			
		cout<<"Case "<<num<<" is ";
		if (!flag)
			cout<<"not ";
		
		cout<<"a tree."<<endl;
		
	}
}

Is It A Tree?

Time Limit: 1000MS

 

Memory Limit: 10000K

Total Submissions: 15398

 

Accepted: 5291

Description

A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the following properties.


There is exactly one node, called the root, to which no directed edges point.

Every node except the root has exactly one edge pointing to it.

There is a unique sequence of directed edges from the root to each node.

For example, consider the illustrations below, in which nodes are represented by circles and edges are represented by lines with arrowheads. The first two of these are trees, but the last is not.

Is It A Tree? (P1308)_each

In this problem you will be given several descriptions of collections of nodes connected by directed edges. For each of these you are to determine if the collection satisfies the definition of a tree or not.

Input

The input will consist of a sequence of descriptions (test cases) followed by a pair of negative integers. Each test case will consist of a sequence of edge descriptions followed by a pair of zeroes Each edge description will consist of a pair of integers; the first integer identifies the node from which the edge begins, and the second integer identifies the node to which the edge is directed. Node numbers will always be greater than zero.

Output

For each test case display the line "Case k is a tree." or the line "Case k is not a tree.", where k corresponds to the test case number (they are sequentially numbered starting with 1).

Sample Input

6 8  5 3  5 2  6 45 6  0 0

8 1  7 3  6 2  8 9  7 5
7 4  7 8  7 6  0 0

3 8  6 8  6 4
5 3  5 6  5 2  0 0
-1 -1

Sample Output

Case 1 is a tree.Case 2 is a tree. Case 3 is not a tree.

Source



【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月08日 0

暂无评论

W79oLdECuAdO
作者其他文章 更多
最新推荐 更多

2024-05-31