結果

問題 No.2674 k-Walk on Bipartite
ユーザー detteiuudetteiuu
提出日時 2024-10-26 18:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 1,381 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 98,300 KB
最終ジャッジ日時 2024-10-26 18:36:07
合計ジャッジ時間 8,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,524 KB
testcase_01 AC 40 ms
54,644 KB
testcase_02 AC 40 ms
54,116 KB
testcase_03 AC 41 ms
54,020 KB
testcase_04 AC 40 ms
53,708 KB
testcase_05 AC 41 ms
55,048 KB
testcase_06 AC 40 ms
54,192 KB
testcase_07 AC 256 ms
93,596 KB
testcase_08 AC 380 ms
92,308 KB
testcase_09 AC 207 ms
93,380 KB
testcase_10 AC 482 ms
95,096 KB
testcase_11 AC 261 ms
90,204 KB
testcase_12 AC 427 ms
93,012 KB
testcase_13 AC 189 ms
90,080 KB
testcase_14 AC 104 ms
84,848 KB
testcase_15 AC 422 ms
96,140 KB
testcase_16 AC 346 ms
96,872 KB
testcase_17 AC 299 ms
90,008 KB
testcase_18 AC 147 ms
85,464 KB
testcase_19 AC 228 ms
91,948 KB
testcase_20 AC 213 ms
94,292 KB
testcase_21 AC 346 ms
91,356 KB
testcase_22 AC 447 ms
98,300 KB
testcase_23 AC 42 ms
54,476 KB
testcase_24 AC 41 ms
54,296 KB
testcase_25 AC 41 ms
54,208 KB
testcase_26 AC 43 ms
54,752 KB
testcase_27 AC 41 ms
54,192 KB
testcase_28 AC 41 ms
54,856 KB
testcase_29 AC 41 ms
54,784 KB
testcase_30 AC 41 ms
55,296 KB
testcase_31 AC 41 ms
55,144 KB
testcase_32 AC 42 ms
54,172 KB
testcase_33 AC 41 ms
54,372 KB
testcase_34 AC 40 ms
53,856 KB
testcase_35 AC 41 ms
54,124 KB
testcase_36 AC 40 ms
54,264 KB
testcase_37 AC 40 ms
54,500 KB
testcase_38 AC 41 ms
54,740 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)]
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")
    exit()

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