結果

問題 No.2674 k-Walk on Bipartite
ユーザー hiro1729hiro1729
提出日時 2024-03-15 22:09:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 99,172 KB
最終ジャッジ日時 2024-09-30 01:25:34
合計ジャッジ時間 5,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,812 KB
testcase_01 AC 35 ms
54,076 KB
testcase_02 AC 36 ms
54,624 KB
testcase_03 AC 37 ms
53,536 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
54,444 KB
testcase_07 AC 189 ms
93,852 KB
testcase_08 AC 246 ms
90,116 KB
testcase_09 RE -
testcase_10 AC 276 ms
93,264 KB
testcase_11 RE -
testcase_12 AC 261 ms
90,684 KB
testcase_13 RE -
testcase_14 AC 89 ms
83,468 KB
testcase_15 AC 312 ms
95,552 KB
testcase_16 AC 231 ms
94,724 KB
testcase_17 AC 230 ms
90,152 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 169 ms
93,112 KB
testcase_21 AC 242 ms
91,256 KB
testcase_22 RE -
testcase_23 AC 37 ms
54,660 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 34 ms
55,092 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 37 ms
54,848 KB
testcase_32 AC 36 ms
55,324 KB
testcase_33 AC 37 ms
53,700 KB
testcase_34 AC 35 ms
54,732 KB
testcase_35 AC 38 ms
54,808 KB
testcase_36 AC 35 ms
55,400 KB
testcase_37 AC 36 ms
54,992 KB
testcase_38 AC 42 ms
54,172 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 d[t] % 2 == k % 2:
		print("Yes" if d[t] <= k else "Unknown")
	else:
		print("No")
else:
	assert(False)
0