結果

問題 No.2674 k-Walk on Bipartite
ユーザー 👑 rin204rin204
提出日時 2024-03-15 21:47:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 788 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 98,380 KB
最終ジャッジ日時 2024-09-30 00:43:49
合計ジャッジ時間 5,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,192 KB
testcase_01 AC 38 ms
55,056 KB
testcase_02 AC 37 ms
54,756 KB
testcase_03 AC 40 ms
55,544 KB
testcase_04 AC 37 ms
54,788 KB
testcase_05 AC 38 ms
55,116 KB
testcase_06 AC 35 ms
53,996 KB
testcase_07 AC 199 ms
93,500 KB
testcase_08 AC 238 ms
90,212 KB
testcase_09 AC 170 ms
93,608 KB
testcase_10 AC 285 ms
93,536 KB
testcase_11 AC 202 ms
90,220 KB
testcase_12 AC 275 ms
90,932 KB
testcase_13 AC 152 ms
90,072 KB
testcase_14 AC 91 ms
83,568 KB
testcase_15 AC 313 ms
96,300 KB
testcase_16 AC 234 ms
95,076 KB
testcase_17 AC 227 ms
90,384 KB
testcase_18 AC 112 ms
85,616 KB
testcase_19 AC 173 ms
91,984 KB
testcase_20 AC 164 ms
92,900 KB
testcase_21 AC 228 ms
91,412 KB
testcase_22 AC 321 ms
98,380 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 36 ms
54,212 KB
testcase_29 AC 36 ms
54,216 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 37 ms
55,368 KB
testcase_36 AC 37 ms
54,844 KB
testcase_37 AC 38 ms
54,316 KB
testcase_38 AC 37 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
s, t, k = map(int, input().split())
if n == 1:
    print("No")
    exit()
elif n == 2:
    if k % 2 == 1:
        print("Yes")
    else:
        print("No")
    exit()

s -= 1
t -= 1
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

queue = deque()
dist = [-1] * n
dist[s] = 0
queue.append(s)
while queue:
    pos = queue.popleft()
    for npos in edges[pos]:
        if dist[npos] != -1:
            continue
        dist[npos] = dist[pos] + 1
        queue.append(npos)

if dist[t] == -1:
    print("Unknown")
elif dist[t] % 2 != k % 2:
    print("No")
elif dist[t] <= k:
    print("Yes")
else:
    print("Unknown")
0