結果

問題 No.1190 Points
ユーザー H3PO4H3PO4
提出日時 2021-12-08 08:54:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,055 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 101,784 KB
最終ジャッジ日時 2024-07-16 00:48:46
合計ジャッジ時間 6,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,384 KB
testcase_01 AC 39 ms
54,296 KB
testcase_02 AC 38 ms
54,852 KB
testcase_03 AC 183 ms
90,360 KB
testcase_04 AC 163 ms
87,004 KB
testcase_05 AC 157 ms
90,728 KB
testcase_06 AC 197 ms
90,396 KB
testcase_07 AC 208 ms
95,888 KB
testcase_08 AC 233 ms
100,828 KB
testcase_09 AC 223 ms
100,084 KB
testcase_10 AC 232 ms
101,784 KB
testcase_11 AC 190 ms
93,872 KB
testcase_12 AC 246 ms
99,612 KB
testcase_13 AC 185 ms
90,744 KB
testcase_14 AC 82 ms
82,336 KB
testcase_15 AC 270 ms
100,364 KB
testcase_16 AC 88 ms
79,328 KB
testcase_17 AC 228 ms
97,912 KB
testcase_18 AC 147 ms
83,216 KB
testcase_19 AC 79 ms
84,172 KB
testcase_20 AC 173 ms
87,196 KB
testcase_21 AC 106 ms
82,972 KB
testcase_22 AC 100 ms
86,956 KB
testcase_23 AC 263 ms
99,216 KB
testcase_24 AC 247 ms
98,980 KB
testcase_25 AC 195 ms
91,032 KB
testcase_26 AC 132 ms
89,280 KB
testcase_27 AC 198 ms
91,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline

N, M, P = map(int, input().split())
S, G = (int(x) - 1 for x in input().split())
Graph = [[] for _ in range(N)]
for _ in range(M):
    u, v = (int(x) - 1 for x in input().split())
    Graph[u].append(v)
    Graph[v].append(u)

INF = 10 ** 9
pair2idx = lambda v, p: v + p * N
idx2pair = lambda v2: divmod(v2, N)


def dist_parity(v0):
    dist = [INF] * (2 * N)
    d = deque([v0])
    dist[v0] = 0
    while d:
        v2 = d.popleft()
        dv = dist[v2]
        parity, v = idx2pair(v2)
        for x in Graph[v]:
            x2 = pair2idx(x, 1 - parity)
            if dist[x2] == INF:
                dist[x2] = dv + 1
                d.append(x2)
    return dist


dist_s, dist_g = dist_parity(S), dist_parity(G)

ans = []
for i in range(N):
    if dist_s[pair2idx(i, 0)] + dist_g[pair2idx(i, P % 2)] <= P or dist_s[pair2idx(i, 1)] + dist_g[pair2idx(i, 1 - P % 2)] <= P:
        ans.append(i + 1)
if ans:
    print(len(ans))
    print(*ans, sep="\n")
else:
    print(-1)
0