結果

問題 No.2674 k-Walk on Bipartite
ユーザー Today03Today03
提出日時 2024-03-16 06:56:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 977 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-09-30 03:52:49
合計ジャッジ時間 11,576 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 553 ms
34,688 KB
testcase_08 AC 845 ms
32,512 KB
testcase_09 AC 448 ms
34,304 KB
testcase_10 AC 858 ms
36,992 KB
testcase_11 AC 498 ms
30,336 KB
testcase_12 AC 888 ms
34,816 KB
testcase_13 AC 445 ms
31,616 KB
testcase_14 AC 144 ms
23,808 KB
testcase_15 AC 977 ms
39,424 KB
testcase_16 AC 608 ms
36,608 KB
testcase_17 AC 651 ms
31,360 KB
testcase_18 AC 236 ms
25,344 KB
testcase_19 AC 476 ms
33,920 KB
testcase_20 AC 463 ms
33,792 KB
testcase_21 AC 709 ms
33,280 KB
testcase_22 AC 952 ms
41,856 KB
testcase_23 AC 27 ms
10,496 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 25 ms
10,624 KB
testcase_26 AC 24 ms
10,880 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 AC 24 ms
10,752 KB
testcase_29 AC 24 ms
10,752 KB
testcase_30 AC 24 ms
10,880 KB
testcase_31 AC 25 ms
10,880 KB
testcase_32 AC 25 ms
10,880 KB
testcase_33 AC 24 ms
10,752 KB
testcase_34 AC 24 ms
10,496 KB
testcase_35 AC 25 ms
10,624 KB
testcase_36 AC 24 ms
10,880 KB
testcase_37 AC 24 ms
10,880 KB
testcase_38 AC 24 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

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)]
INF = 10**9
for _ in range(M):
    A, B = map(int, input().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    G[B].append(A)

if N == 1:
    print("No")
    exit()

D = [INF] * N
D[S] = 0
Q = deque()
Q.append(S)

while Q:
    now = Q.popleft()
    for nxt in G[now]:
        if D[nxt] > D[now] + 1:
            D[nxt] = D[now] + 1
            Q.append(nxt)

if S == T:
    if K % 2 == 0 and len(G[S]) > 0:
        print("Yes")
    elif K % 2 == 0:
        print("Unknown")
    else:
        print("No")
elif N == 2 and K % 2 == 0:
    print("No")
else:
    if D[T] <= K and D[T] % 2 == K % 2:
        print("Yes")
    elif D[T] == INF or (D[T] != INF and D[T] % 2 == K % 2):
        print("Unknown")
    else:
        print("No")
0