結果

問題 No.2674 k-Walk on Bipartite
ユーザー hiro1729hiro1729
提出日時 2024-03-15 22:22:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 98,388 KB
最終ジャッジ日時 2024-09-30 01:46:02
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,820 KB
testcase_01 AC 38 ms
54,504 KB
testcase_02 AC 41 ms
54,716 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 212 ms
93,428 KB
testcase_08 AC 238 ms
90,288 KB
testcase_09 AC 193 ms
93,360 KB
testcase_10 AC 301 ms
93,336 KB
testcase_11 AC 212 ms
90,136 KB
testcase_12 AC 271 ms
90,484 KB
testcase_13 AC 161 ms
89,996 KB
testcase_14 AC 96 ms
83,840 KB
testcase_15 AC 342 ms
95,748 KB
testcase_16 AC 248 ms
95,120 KB
testcase_17 AC 247 ms
90,160 KB
testcase_18 AC 126 ms
85,312 KB
testcase_19 AC 198 ms
91,612 KB
testcase_20 AC 176 ms
92,984 KB
testcase_21 AC 247 ms
91,696 KB
testcase_22 AC 565 ms
98,388 KB
testcase_23 WA -
testcase_24 AC 42 ms
53,812 KB
testcase_25 AC 44 ms
54,436 KB
testcase_26 WA -
testcase_27 AC 43 ms
54,068 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 42 ms
54,068 KB
testcase_31 AC 44 ms
54,168 KB
testcase_32 AC 45 ms
54,432 KB
testcase_33 AC 44 ms
54,432 KB
testcase_34 AC 43 ms
54,136 KB
testcase_35 AC 43 ms
54,096 KB
testcase_36 AC 43 ms
54,144 KB
testcase_37 AC 39 ms
54,400 KB
testcase_38 AC 39 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N, M = map(int, input().split())
s, t, k = map(int, input().split())
s -= 1
t -= 1
g = [[] for _ in range(N)]
for _ in range(M):
	u, v = map(int, input().split())
	u -= 1
	v -= 1
	g[u].append(v)
	g[v].append(u)
d = [10 ** 9] * N
d[s] = 0
q = deque([s])
while q:
	u = q.popleft()
	for v in g[u]:
		if d[u] + 1 < d[v]:
			d[v] = d[u] + 1
			q.append(v)
if d[t] < 10 ** 9:
	if s == t and g[s] == []:
		print("Unknown")
	elif d[t] % 2 == k % 2:
		print("Yes" if d[t] <= k else "Unknown")
	else:
		print("No")
else:
	print("Unknown")
0