結果

問題 No.2674 k-Walk on Bipartite
ユーザー 👑 rin204rin204
提出日時 2024-03-15 21:39:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 98,364 KB
最終ジャッジ日時 2024-09-30 00:34:10
合計ジャッジ時間 6,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,536 KB
testcase_01 AC 36 ms
54,112 KB
testcase_02 AC 36 ms
54,408 KB
testcase_03 AC 41 ms
55,044 KB
testcase_04 AC 36 ms
54,652 KB
testcase_05 AC 35 ms
55,200 KB
testcase_06 AC 37 ms
54,864 KB
testcase_07 AC 204 ms
93,240 KB
testcase_08 AC 234 ms
90,568 KB
testcase_09 AC 169 ms
93,716 KB
testcase_10 AC 280 ms
93,344 KB
testcase_11 AC 211 ms
90,008 KB
testcase_12 AC 250 ms
90,932 KB
testcase_13 AC 154 ms
89,996 KB
testcase_14 AC 89 ms
83,620 KB
testcase_15 AC 307 ms
96,160 KB
testcase_16 AC 228 ms
95,364 KB
testcase_17 AC 214 ms
90,112 KB
testcase_18 AC 114 ms
85,448 KB
testcase_19 AC 179 ms
91,936 KB
testcase_20 AC 161 ms
92,828 KB
testcase_21 AC 226 ms
91,408 KB
testcase_22 AC 312 ms
98,364 KB
testcase_23 AC 38 ms
54,060 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 38 ms
54,204 KB
testcase_27 AC 38 ms
54,896 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
54,688 KB
testcase_31 AC 37 ms
54,936 KB
testcase_32 AC 37 ms
53,760 KB
testcase_33 AC 38 ms
54,464 KB
testcase_34 AC 39 ms
54,036 KB
testcase_35 AC 35 ms
55,052 KB
testcase_36 AC 37 ms
54,548 KB
testcase_37 AC 39 ms
53,852 KB
testcase_38 AC 39 ms
54,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
s, t, k = map(int, input().split())
if n == 1:
    print("No")
    exit()
s -= 1
t -= 1
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

queue = deque()
dist = [-1] * n
dist[s] = 0
queue.append(s)
while queue:
    pos = queue.popleft()
    for npos in edges[pos]:
        if dist[npos] != -1:
            continue
        dist[npos] = dist[pos] + 1
        queue.append(npos)

if dist[t] == -1:
    print("Unknown")
elif dist[t] % 2 != k % 2:
    print("No")
elif dist[t] <= k:
    print("Yes")
else:
    print("Unknown")
0