結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 571 ms
35,072 KB
testcase_08 AC 730 ms
32,512 KB
testcase_09 AC 442 ms
34,560 KB
testcase_10 AC 929 ms
36,864 KB
testcase_11 AC 546 ms
30,720 KB
testcase_12 AC 887 ms
34,560 KB
testcase_13 AC 379 ms
31,744 KB
testcase_14 AC 129 ms
23,936 KB
testcase_15 AC 919 ms
39,424 KB
testcase_16 AC 608 ms
36,736 KB
testcase_17 AC 647 ms
31,488 KB
testcase_18 AC 246 ms
25,088 KB
testcase_19 AC 510 ms
33,920 KB
testcase_20 AC 448 ms
33,792 KB
testcase_21 AC 788 ms
33,280 KB
testcase_22 AC 1,117 ms
41,984 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 26 ms
10,624 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 27 ms
10,624 KB
testcase_31 AC 27 ms
10,624 KB
testcase_32 AC 26 ms
10,880 KB
testcase_33 AC 25 ms
10,752 KB
testcase_34 AC 25 ms
10,880 KB
testcase_35 AC 25 ms
10,624 KB
testcase_36 AC 26 ms
10,496 KB
testcase_37 AC 25 ms
10,880 KB
testcase_38 AC 25 ms
10,752 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")
    else:
        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