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

hdu2094——產生冠軍

編輯:C++入門知識

hdu2094——產生冠軍


產生冠軍

Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 9274 Accepted Submission(s): 4359


Problem Description 有一群人,打乒乓球比賽,兩兩捉對撕殺,每兩個人之間最多打一場比賽。
球賽的規則如下:
如果A打敗了B,B又打敗了C,而A與C之間沒有進行過比賽,那麼就認定,A一定能打敗C。
如果A打敗了B,B又打敗了C,而且,C又打敗了A,那麼A、B、C三者都不可能成為冠軍。
根據這個規則,無需循環較量,或許就能確定冠軍。你的任務就是面對一群比賽選手,在經過了若干場撕殺之後,確定是否已經實際上產生了冠軍。

Input 輸入含有一些選手群,每群選手都以一個整數n(n<1000)開頭,後跟n對選手的比賽結果,比賽結果以一對選手名字(中間隔一空格)表示,前者戰勝後者。如果n為0,則表示輸入結束。

Output 對於每個選手群,若你判斷出產生了冠軍,則在一行中輸出“Yes”,否則在一行中輸出“No”。

Sample Input
3
Alice Bob
Smith John
Alice Smith
5
a c
c d
d e
b e
a d
0

Sample Output
Yes
No

Author qianneng
Source

按題目的意思,只要沒輸過的人的數目為1,那麼冠軍就產生了,所以對於一對選手a,b,a戰勝b,則連一條邊 a->b,記錄每個點的如度,最後統計入度為0的點的數目,如果為0或者大於1,那麼就輸出No,否則輸出Yes

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

const int N = 1010;
int n;
char str1[110], str2[110];
int in[N];

int main()
{
	while (~scanf("%d", &n), n)
	{
		mapqu;
		memset (in, 0, sizeof(in));
		qu.clear();
		int cnt = 0;
		for (int i = 1; i <= n; ++i)
		{
			scanf("%s%s", str1, str2);
			if (qu[str1] == 0)
			{
				qu[str1] = ++cnt;
			}
			if (qu[str2] == 0)
			{
				qu[str2] = ++cnt;
			}
			in[qu[str2]]++;
		}
		int ans = 0;
		for (int i = 1; i <= cnt; ++i)
		{
			if (in[i] == 0)
			{
				ans++;
			}
		}
		if (ans >= 2 || ans == 0)
		{
			printf("No\n");
			continue;
		}
		printf("Yes\n");
	}
	return 0;
}


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