結果

問題 No.583 鉄道同好会
ユーザー KoshStormKoshStorm
提出日時 2017-10-28 18:43:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-22 04:09:42
合計ジャッジ時間 3,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 162 ms
12,544 KB
testcase_12 AC 198 ms
12,672 KB
testcase_13 AC 200 ms
12,672 KB
testcase_14 AC 202 ms
12,672 KB
testcase_15 AC 244 ms
12,672 KB
testcase_16 AC 420 ms
12,544 KB
testcase_17 AC 496 ms
12,544 KB
testcase_18 AC 506 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split(" "))

array = [[False]*N for i in range(N)]
flag = {}

for i in range(M):
	Sa,Sb = map(int,input().split(" "))
	array[Sa][Sb] = True
	array[Sb][Sa] = True
	flag[Sa] = 0
	flag[Sb] = 0

#まず連結グラフか判定
def dfs(vertex):
	global flag
	global N
	global array

	if (flag[vertex] == 1):
		return 0

	flag[vertex] = 1

	for i in range(N):
		if array[vertex][i]: #頂点vertexからiへの辺が存在
			dfs(i)

dfs(Sa)

for val in flag.values():
	if val == 0:
		print("nn")
		print("NO")
		exit(0)

#--------ここまでくれば連結グラフであることが保証hoshou#
#オイラーグラフになっているか判断#

end = 0

for i in range(N):
	num = array[i].count(True)
	if num%2 == 1:
		end += 1
		if end >= 3:
			print("NO")
			exit(0)

print("YES")
0