結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,912 KB
testcase_01 AC 40 ms
54,124 KB
testcase_02 AC 40 ms
54,984 KB
testcase_03 AC 40 ms
55,020 KB
testcase_04 AC 43 ms
53,864 KB
testcase_05 AC 43 ms
54,244 KB
testcase_06 AC 42 ms
53,900 KB
testcase_07 AC 240 ms
93,460 KB
testcase_08 AC 266 ms
90,144 KB
testcase_09 AC 180 ms
93,556 KB
testcase_10 AC 303 ms
93,544 KB
testcase_11 AC 212 ms
90,204 KB
testcase_12 AC 315 ms
90,688 KB
testcase_13 AC 189 ms
89,800 KB
testcase_14 AC 106 ms
83,356 KB
testcase_15 AC 331 ms
96,128 KB
testcase_16 AC 267 ms
95,216 KB
testcase_17 AC 272 ms
90,160 KB
testcase_18 AC 128 ms
85,436 KB
testcase_19 AC 217 ms
92,160 KB
testcase_20 AC 195 ms
92,736 KB
testcase_21 AC 270 ms
91,196 KB
testcase_22 AC 398 ms
98,064 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 41 ms
54,368 KB
testcase_28 AC 41 ms
54,684 KB
testcase_29 AC 42 ms
54,828 KB
testcase_30 AC 40 ms
54,460 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 41 ms
54,572 KB
testcase_36 AC 43 ms
54,060 KB
testcase_37 AC 40 ms
53,744 KB
testcase_38 AC 40 ms
54,296 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 N == 1:
		print("No")
	elif N == 2:
		if d[t] == 0:
			# s == t
			if d[1 - t] == 1:
				if k % 2 == 1:
					print("Yes")
				else:
					print("No")
			else:
				if k % 2 == 1:
					print("Unknown")
				else:
					print("No")
		else:
			# s != t
			print("Yes" if k % 2 == 1 else "No")
	elif d[t] % 2 == k % 2:
		print("Yes" if d[t] <= k else "Unknown")
	else:
		print("No")
else:
	if N == 2 and g[s] == [] and g[t] == [] and k % 2 == 0:
		print("No")
	else:
		print("Unknown")
0