結果

問題 No.2674 k-Walk on Bipartite
ユーザー i_am_noobi_am_noob
提出日時 2024-03-21 02:27:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 633 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 101,452 KB
最終ジャッジ日時 2024-09-30 09:58:43
合計ジャッジ時間 9,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
68,792 KB
testcase_01 AC 64 ms
67,768 KB
testcase_02 AC 63 ms
67,344 KB
testcase_03 AC 62 ms
68,060 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 64 ms
68,448 KB
testcase_07 AC 355 ms
97,412 KB
testcase_08 AC 462 ms
94,360 KB
testcase_09 AC 222 ms
94,336 KB
testcase_10 AC 545 ms
97,216 KB
testcase_11 AC 401 ms
93,696 KB
testcase_12 AC 502 ms
94,592 KB
testcase_13 AC 217 ms
93,056 KB
testcase_14 AC 124 ms
84,240 KB
testcase_15 AC 620 ms
99,252 KB
testcase_16 AC 438 ms
97,792 KB
testcase_17 AC 445 ms
93,568 KB
testcase_18 AC 169 ms
88,960 KB
testcase_19 AC 240 ms
92,544 KB
testcase_20 AC 249 ms
93,340 KB
testcase_21 AC 504 ms
95,104 KB
testcase_22 AC 598 ms
101,452 KB
testcase_23 AC 63 ms
66,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 62 ms
66,816 KB
testcase_27 AC 62 ms
66,816 KB
testcase_28 AC 63 ms
66,816 KB
testcase_29 AC 62 ms
66,944 KB
testcase_30 AC 63 ms
67,072 KB
testcase_31 AC 63 ms
66,816 KB
testcase_32 AC 62 ms
66,816 KB
testcase_33 AC 63 ms
66,816 KB
testcase_34 AC 63 ms
67,200 KB
testcase_35 AC 65 ms
66,816 KB
testcase_36 AC 62 ms
67,200 KB
testcase_37 AC 63 ms
66,944 KB
testcase_38 AC 63 ms
66,944 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 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