結果

問題 No.2674 k-Walk on Bipartite
ユーザー detteiuudetteiuu
提出日時 2024-10-26 18:34:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 98,320 KB
最終ジャッジ日時 2024-10-26 18:34:56
合計ジャッジ時間 8,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,476 KB
testcase_01 AC 39 ms
54,084 KB
testcase_02 AC 40 ms
55,184 KB
testcase_03 AC 45 ms
54,676 KB
testcase_04 AC 39 ms
54,788 KB
testcase_05 AC 38 ms
54,848 KB
testcase_06 AC 45 ms
54,592 KB
testcase_07 AC 257 ms
93,364 KB
testcase_08 AC 385 ms
92,076 KB
testcase_09 AC 201 ms
93,688 KB
testcase_10 AC 499 ms
95,212 KB
testcase_11 AC 247 ms
89,868 KB
testcase_12 AC 411 ms
92,848 KB
testcase_13 AC 174 ms
89,792 KB
testcase_14 AC 92 ms
84,664 KB
testcase_15 AC 389 ms
95,916 KB
testcase_16 AC 353 ms
96,924 KB
testcase_17 AC 290 ms
90,184 KB
testcase_18 AC 137 ms
85,652 KB
testcase_19 AC 227 ms
91,744 KB
testcase_20 AC 207 ms
94,016 KB
testcase_21 AC 329 ms
91,256 KB
testcase_22 AC 452 ms
98,320 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 s == t:
        if k%2 == 0:
            if M == 1:
                print("Yes")
            else:
                print("Unknown")
        else:
            print("No")
    else:
        if k%2 == 0:
            print("No")
        else:
            if M == 1:
                print("Yes")
            else:
                print("Unknown")

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