結果

問題 No.2674 k-Walk on Bipartite
ユーザー detteiuudetteiuu
提出日時 2024-10-26 18:32:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,155 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 97,952 KB
最終ジャッジ日時 2024-10-26 18:32:22
合計ジャッジ時間 9,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,120 KB
testcase_01 AC 40 ms
54,176 KB
testcase_02 AC 54 ms
53,948 KB
testcase_03 AC 40 ms
53,988 KB
testcase_04 AC 42 ms
55,176 KB
testcase_05 AC 41 ms
54,532 KB
testcase_06 AC 41 ms
54,740 KB
testcase_07 AC 260 ms
93,572 KB
testcase_08 AC 375 ms
92,216 KB
testcase_09 AC 204 ms
93,640 KB
testcase_10 AC 463 ms
95,316 KB
testcase_11 AC 256 ms
90,172 KB
testcase_12 AC 407 ms
92,848 KB
testcase_13 AC 182 ms
90,148 KB
testcase_14 AC 98 ms
84,640 KB
testcase_15 AC 422 ms
96,244 KB
testcase_16 AC 356 ms
96,592 KB
testcase_17 AC 290 ms
89,872 KB
testcase_18 AC 140 ms
85,348 KB
testcase_19 AC 226 ms
91,904 KB
testcase_20 AC 203 ms
94,392 KB
testcase_21 AC 326 ms
91,504 KB
testcase_22 AC 421 ms
97,952 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
s, t, k = map(int, input().split())
s, t = s-1, t-1
G = [[] for _ in range(N)]
for _ in range(M):
    A, B = map(int, input().split())
    G[A-1].append(B-1)
    G[B-1].append(A-1)

if N == 1:
    exit(print("No"))
elif N == 2:
    if k%2 == 1:
        if M == 1:
            print("Yes")
        else:
            print("Unknown")
    else:
        print("No")

visited = [-1]*N
visited[s] = 0
que = deque()
que.append(s)
same = False
while que:
    n = que.popleft()
    if n == t:
        same = True
    for v in G[n]:
        if visited[v] == -1:
            visited[v] = visited[n]^1
            que.append(v)

if same:
    if visited[t]%2 == k%2:
        visited = [-1]*N
        visited[s] = 0
        que = deque()
        que.append(s)
        while que:
            n = que.popleft()
            for v in G[n]:
                if visited[v] == -1:
                    visited[v] = visited[n]+1
                    que.append(v)
        if visited[t] <= k:
            print("Yes")
        else:
            print("Unknown")
    else:
        print("No")
else:
    print("Unknown")
0