結果

問題 No.2674 k-Walk on Bipartite
ユーザー rlangevinrlangevin
提出日時 2024-03-19 12:20:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 99,180 KB
最終ジャッジ日時 2024-09-30 05:22:48
合計ジャッジ時間 5,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,128 KB
testcase_01 AC 36 ms
54,368 KB
testcase_02 AC 36 ms
53,996 KB
testcase_03 AC 32 ms
53,300 KB
testcase_04 AC 34 ms
52,868 KB
testcase_05 AC 33 ms
52,640 KB
testcase_06 AC 33 ms
52,760 KB
testcase_07 AC 154 ms
94,528 KB
testcase_08 AC 168 ms
91,564 KB
testcase_09 AC 116 ms
91,936 KB
testcase_10 AC 211 ms
93,380 KB
testcase_11 AC 157 ms
90,924 KB
testcase_12 AC 189 ms
90,384 KB
testcase_13 AC 116 ms
90,344 KB
testcase_14 AC 73 ms
85,964 KB
testcase_15 AC 234 ms
96,600 KB
testcase_16 AC 170 ms
94,892 KB
testcase_17 AC 179 ms
90,860 KB
testcase_18 AC 84 ms
84,196 KB
testcase_19 AC 131 ms
93,104 KB
testcase_20 AC 116 ms
91,160 KB
testcase_21 AC 172 ms
92,728 KB
testcase_22 AC 248 ms
99,180 KB
testcase_23 AC 33 ms
53,304 KB
testcase_24 AC 32 ms
52,584 KB
testcase_25 AC 34 ms
53,228 KB
testcase_26 AC 35 ms
53,828 KB
testcase_27 AC 35 ms
53,500 KB
testcase_28 AC 35 ms
52,644 KB
testcase_29 AC 33 ms
53,312 KB
testcase_30 AC 34 ms
52,484 KB
testcase_31 AC 33 ms
53,576 KB
testcase_32 AC 32 ms
53,216 KB
testcase_33 AC 32 ms
52,448 KB
testcase_34 AC 32 ms
53,108 KB
testcase_35 AC 31 ms
52,476 KB
testcase_36 AC 32 ms
53,244 KB
testcase_37 AC 33 ms
53,080 KB
testcase_38 AC 33 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
G = [[] for i in range(N)]
s, t, k = map(int, input().split())
s, t = s - 1, t - 1
if N == 1:
    print("Yes") if k == 0 else print("No")
    exit()
    
if N == 2:
    if s == t:
        if k % 2:
            print("No")
        else:
            if M == 0:
                if k == 0:
                    print("Yes")
                else:
                    print("Unknown")
            else:
                print("Yes")
    else:
        if k % 2 == 0:
            print("No")
        else:
            if M == 0:
                print("Unknown")
            else:
                print("Yes")
    exit()                   


for i in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append(v)
    G[v].append(u)
    
from collections import deque
def bfs(G, s):
    Q = deque([s])
    N = len(G)
    dist = [-1] * N
    par = [-1] * N
    dist[s] = 0
    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)

    return dist

D = bfs(G, s)
if D[t] == -1:
    print("Unknown")
elif (D[t] - k) % 2:
    print("No")
elif D[t] <= k:
    print("Yes")
else:
    print("Unknown")
0