結果

問題 No.2674 k-Walk on Bipartite
ユーザー hiro1729hiro1729
提出日時 2024-03-15 22:19:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 98,228 KB
最終ジャッジ日時 2024-09-30 01:41:42
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,280 KB
testcase_01 AC 43 ms
53,924 KB
testcase_02 AC 42 ms
53,948 KB
testcase_03 AC 44 ms
54,056 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 42 ms
55,660 KB
testcase_07 AC 277 ms
93,224 KB
testcase_08 AC 342 ms
90,288 KB
testcase_09 WA -
testcase_10 AC 402 ms
93,068 KB
testcase_11 WA -
testcase_12 AC 380 ms
90,464 KB
testcase_13 WA -
testcase_14 AC 106 ms
83,584 KB
testcase_15 AC 450 ms
96,000 KB
testcase_16 AC 314 ms
94,924 KB
testcase_17 AC 329 ms
90,228 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 217 ms
93,312 KB
testcase_21 AC 331 ms
91,240 KB
testcase_22 WA -
testcase_23 AC 43 ms
53,760 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 43 ms
54,000 KB
testcase_27 WA -
testcase_28 AC 43 ms
53,888 KB
testcase_29 AC 44 ms
53,760 KB
testcase_30 WA -
testcase_31 AC 42 ms
53,760 KB
testcase_32 AC 43 ms
53,888 KB
testcase_33 AC 42 ms
53,632 KB
testcase_34 AC 42 ms
53,632 KB
testcase_35 AC 43 ms
54,272 KB
testcase_36 AC 43 ms
53,888 KB
testcase_37 AC 42 ms
53,760 KB
testcase_38 AC 42 ms
53,632 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:
	print("No")
0