結果

問題 No.2674 k-Walk on Bipartite
ユーザー 👑 rin204rin204
提出日時 2024-03-15 21:52:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 98,392 KB
最終ジャッジ日時 2024-09-30 00:53:46
合計ジャッジ時間 6,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,408 KB
testcase_01 AC 43 ms
54,968 KB
testcase_02 AC 42 ms
54,692 KB
testcase_03 AC 43 ms
53,932 KB
testcase_04 AC 40 ms
55,200 KB
testcase_05 AC 42 ms
55,460 KB
testcase_06 AC 40 ms
55,052 KB
testcase_07 AC 212 ms
93,408 KB
testcase_08 AC 341 ms
90,584 KB
testcase_09 AC 211 ms
93,500 KB
testcase_10 AC 394 ms
93,324 KB
testcase_11 AC 229 ms
90,168 KB
testcase_12 AC 276 ms
90,980 KB
testcase_13 AC 160 ms
90,020 KB
testcase_14 AC 94 ms
84,016 KB
testcase_15 AC 335 ms
96,116 KB
testcase_16 AC 258 ms
95,260 KB
testcase_17 AC 249 ms
90,056 KB
testcase_18 AC 124 ms
85,604 KB
testcase_19 AC 193 ms
91,992 KB
testcase_20 AC 184 ms
92,940 KB
testcase_21 AC 265 ms
91,388 KB
testcase_22 AC 414 ms
98,392 KB
testcase_23 AC 43 ms
54,996 KB
testcase_24 AC 42 ms
53,976 KB
testcase_25 AC 42 ms
55,444 KB
testcase_26 AC 41 ms
55,176 KB
testcase_27 AC 41 ms
55,800 KB
testcase_28 AC 42 ms
54,816 KB
testcase_29 AC 41 ms
55,552 KB
testcase_30 AC 42 ms
54,504 KB
testcase_31 AC 41 ms
53,856 KB
testcase_32 AC 42 ms
54,068 KB
testcase_33 AC 42 ms
53,932 KB
testcase_34 AC 41 ms
54,864 KB
testcase_35 AC 42 ms
54,192 KB
testcase_36 AC 43 ms
55,216 KB
testcase_37 AC 41 ms
54,512 KB
testcase_38 AC 40 ms
53,944 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) ^ (s == t):
        if m == 1:
            print("Yes")
        else:
            print("Unknown")
    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