結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,808 KB
testcase_01 AC 44 ms
53,844 KB
testcase_02 AC 44 ms
55,300 KB
testcase_03 AC 44 ms
55,448 KB
testcase_04 AC 44 ms
55,304 KB
testcase_05 AC 44 ms
54,052 KB
testcase_06 AC 43 ms
53,684 KB
testcase_07 AC 267 ms
93,368 KB
testcase_08 AC 334 ms
90,300 KB
testcase_09 AC 219 ms
93,596 KB
testcase_10 AC 408 ms
93,408 KB
testcase_11 AC 280 ms
90,192 KB
testcase_12 AC 368 ms
90,756 KB
testcase_13 AC 203 ms
89,748 KB
testcase_14 AC 107 ms
83,696 KB
testcase_15 AC 451 ms
96,008 KB
testcase_16 AC 311 ms
95,012 KB
testcase_17 AC 319 ms
90,332 KB
testcase_18 AC 150 ms
85,608 KB
testcase_19 AC 243 ms
92,048 KB
testcase_20 AC 221 ms
92,828 KB
testcase_21 AC 338 ms
91,284 KB
testcase_22 AC 458 ms
98,164 KB
testcase_23 AC 43 ms
54,720 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 43 ms
54,488 KB
testcase_27 WA -
testcase_28 AC 43 ms
54,524 KB
testcase_29 AC 43 ms
55,100 KB
testcase_30 WA -
testcase_31 AC 44 ms
54,272 KB
testcase_32 AC 43 ms
53,940 KB
testcase_33 AC 44 ms
53,900 KB
testcase_34 AC 43 ms
54,272 KB
testcase_35 AC 44 ms
54,684 KB
testcase_36 AC 43 ms
54,176 KB
testcase_37 AC 43 ms
54,340 KB
testcase_38 AC 44 ms
54,660 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):
        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