結果

問題 No.1190 Points
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-16 12:26:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 653 ms / 2,000 ms
コード長 1,332 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 117,360 KB
最終ジャッジ日時 2024-11-27 12:21:38
合計ジャッジ時間 12,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,736 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 348 ms
98,416 KB
testcase_04 AC 324 ms
94,812 KB
testcase_05 AC 307 ms
96,120 KB
testcase_06 AC 389 ms
100,888 KB
testcase_07 AC 434 ms
106,568 KB
testcase_08 AC 470 ms
112,908 KB
testcase_09 AC 534 ms
115,584 KB
testcase_10 AC 498 ms
113,224 KB
testcase_11 AC 430 ms
104,296 KB
testcase_12 AC 523 ms
112,304 KB
testcase_13 AC 408 ms
100,020 KB
testcase_14 AC 90 ms
86,956 KB
testcase_15 AC 635 ms
115,940 KB
testcase_16 AC 139 ms
81,600 KB
testcase_17 AC 585 ms
112,884 KB
testcase_18 AC 269 ms
89,408 KB
testcase_19 AC 86 ms
89,404 KB
testcase_20 AC 363 ms
96,312 KB
testcase_21 AC 178 ms
87,896 KB
testcase_22 AC 95 ms
89,340 KB
testcase_23 AC 653 ms
117,360 KB
testcase_24 AC 639 ms
116,100 KB
testcase_25 AC 398 ms
104,640 KB
testcase_26 AC 158 ms
97,700 KB
testcase_27 AC 404 ms
104,756 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