結果

問題 No.2674 k-Walk on Bipartite
ユーザー i_am_noobi_am_noob
提出日時 2024-03-21 02:35:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 101,504 KB
最終ジャッジ日時 2024-09-30 09:59:00
合計ジャッジ時間 9,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
66,816 KB
testcase_01 AC 63 ms
66,560 KB
testcase_02 AC 63 ms
66,816 KB
testcase_03 AC 63 ms
66,944 KB
testcase_04 AC 63 ms
66,816 KB
testcase_05 AC 63 ms
67,072 KB
testcase_06 AC 64 ms
67,200 KB
testcase_07 AC 363 ms
97,152 KB
testcase_08 AC 465 ms
93,900 KB
testcase_09 AC 234 ms
94,208 KB
testcase_10 AC 549 ms
97,192 KB
testcase_11 AC 432 ms
93,184 KB
testcase_12 AC 515 ms
94,336 KB
testcase_13 AC 224 ms
93,032 KB
testcase_14 AC 123 ms
84,352 KB
testcase_15 AC 603 ms
99,728 KB
testcase_16 AC 440 ms
97,776 KB
testcase_17 AC 468 ms
93,568 KB
testcase_18 AC 170 ms
88,832 KB
testcase_19 AC 249 ms
92,288 KB
testcase_20 AC 237 ms
93,312 KB
testcase_21 AC 496 ms
95,224 KB
testcase_22 AC 634 ms
101,504 KB
testcase_23 AC 64 ms
67,200 KB
testcase_24 AC 62 ms
66,816 KB
testcase_25 AC 62 ms
66,816 KB
testcase_26 AC 62 ms
66,816 KB
testcase_27 AC 64 ms
67,328 KB
testcase_28 AC 64 ms
66,816 KB
testcase_29 AC 64 ms
66,816 KB
testcase_30 AC 64 ms
66,816 KB
testcase_31 AC 65 ms
66,816 KB
testcase_32 AC 65 ms
66,944 KB
testcase_33 AC 65 ms
67,072 KB
testcase_34 AC 64 ms
66,944 KB
testcase_35 AC 65 ms
66,560 KB
testcase_36 AC 63 ms
66,816 KB
testcase_37 AC 63 ms
66,944 KB
testcase_38 AC 64 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s, t, k = map(int, input().split())
s -= 1
t -= 1
adj = [[] for i in range(n)]
for i in range(m):
	u, v = map(int, input().split())
	u -= 1
	v -= 1
	adj[u].append(v)
	adj[v].append(u)

dis = [1000000000 for i in range(n)]

from queue import *
q = Queue()

q.put(s)
dis[s] = 0

while not q.empty():
	u = q.get()
	q.task_done()
	for v in adj[u]:
		if dis[v] > dis[u] + 1:
			dis[v] = dis[u] + 1
			q.put(v)

if n == 1:
	print("No")
elif s == t:
	if (dis[t] + k) % 2:
		print("No")
	else:
		print("Yes" if adj[s] else "Unknown")
elif dis[t] < 1000000000:
	if (dis[t] + k) % 2:
		print("No")
	elif dis[t] <= k:
		print("Yes")
	else:
		print("Unknown")
elif k % 2:
	print("Unknown")
else:
	print("No" if n == 2 else "Unknown")
0