程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVa10596 - Morning Walk

UVa10596 - Morning Walk

編輯:C++入門知識

題目地址:點擊打開鏈接

#include 
using namespace std;
const int maxsize = 210;
int f[maxsize];
int degree[maxsize];
int find_father(int x)
{
	if(f[x]==-1||f[x]==-2)
	{
		f[x]=-1;
		return x;
	}
	else
		return find_father(f[x]);
}
void Union(int a,int b)
{
	int father_a=find_father(a);
	int father_b=find_father(b);
	if(father_a!=father_b)
		f[father_a]=father_b;
}
int main()
{
	int N,R;
	while(cin>>N>>R)
	{
		int i;
		for(i=0;i>a>>b;
			++degree[a];
			++degree[b];
			Union(a,b);
		}
		int num=0;
		for(i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved