結果

問題 No.1190 Points
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-16 12:26:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 1,332 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-05-05 14:22:27
合計ジャッジ時間 15,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 437 ms
98,048 KB
testcase_04 AC 405 ms
94,464 KB
testcase_05 AC 381 ms
96,000 KB
testcase_06 AC 512 ms
101,504 KB
testcase_07 AC 559 ms
106,880 KB
testcase_08 AC 569 ms
112,896 KB
testcase_09 AC 658 ms
115,840 KB
testcase_10 AC 607 ms
113,792 KB
testcase_11 AC 514 ms
104,320 KB
testcase_12 AC 646 ms
112,512 KB
testcase_13 AC 513 ms
100,096 KB
testcase_14 AC 113 ms
86,784 KB
testcase_15 AC 768 ms
115,712 KB
testcase_16 AC 175 ms
81,664 KB
testcase_17 AC 715 ms
113,024 KB
testcase_18 AC 328 ms
89,984 KB
testcase_19 AC 109 ms
89,600 KB
testcase_20 AC 449 ms
96,640 KB
testcase_21 AC 239 ms
88,192 KB
testcase_22 AC 139 ms
89,344 KB
testcase_23 AC 816 ms
117,376 KB
testcase_24 AC 807 ms
116,480 KB
testcase_25 AC 504 ms
105,088 KB
testcase_26 AC 224 ms
97,536 KB
testcase_27 AC 525 ms
104,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**18

N, M, P = map(int, input().split())
S, G = map(int, input().split())
S -= 1
G -= 1
edge = [[] for _ in range(2 * N)]  # [e,e,e,e, .., o,o,o,]
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edge[a].append(b + N)
    edge[b].append(a + N)
    edge[a + N].append(b)
    edge[b + N].append(a)


def dijkstra(start):
    dist = [inf] * (2 * N)
    dist[start] = 0
    que = [(0, start)]
    while que:
        ds, s = heapq.heappop(que)
        if dist[s] < ds:
            continue
        for t in edge[s]:
            if dist[t] > ds + 1:
                dist[t] = ds + 1
                heapq.heappush(que, (ds + 1, t))
    return dist


stoi = dijkstra(S)
gtoi = dijkstra(G)
cnt = 0
node = []
if P % 2 == 0:
    for i in range(N):
        if stoi[i] + gtoi[i] <= P:
            cnt += 1
            node.append(i + 1)
        elif stoi[i+N] + gtoi[i+N] <= P:
            cnt += 1
            node.append(i + 1)
else:
    for i in range(N):
        if stoi[i] + gtoi[i+N] <= P:
            cnt += 1
            node.append(i + 1)
        elif stoi[i+N] + gtoi[i] <= P:
            cnt += 1
            node.append(i + 1)

if not cnt:
    print(-1)
else:
    print(cnt)
    print(*node, sep="\n")
0