結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 51 ms
53,504 KB
testcase_02 AC 51 ms
54,016 KB
testcase_03 AC 286 ms
97,920 KB
testcase_04 AC 243 ms
93,568 KB
testcase_05 AC 243 ms
96,768 KB
testcase_06 AC 335 ms
100,352 KB
testcase_07 AC 352 ms
107,264 KB
testcase_08 AC 303 ms
108,032 KB
testcase_09 AC 318 ms
109,056 KB
testcase_10 AC 312 ms
112,512 KB
testcase_11 AC 281 ms
99,072 KB
testcase_12 AC 322 ms
108,032 KB
testcase_13 AC 284 ms
94,720 KB
testcase_14 AC 116 ms
86,656 KB
testcase_15 AC 420 ms
108,544 KB
testcase_16 AC 113 ms
80,640 KB
testcase_17 AC 418 ms
107,008 KB
testcase_18 AC 216 ms
87,168 KB
testcase_19 AC 112 ms
89,216 KB
testcase_20 AC 267 ms
92,672 KB
testcase_21 AC 154 ms
85,248 KB
testcase_22 AC 142 ms
89,344 KB
testcase_23 AC 461 ms
108,288 KB
testcase_24 AC 432 ms
107,520 KB
testcase_25 AC 330 ms
101,248 KB
testcase_26 AC 219 ms
97,920 KB
testcase_27 AC 332 ms
101,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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 BFS(start):
    dist = [inf] * (2 * N)
    dist[start] = 0
    que = deque([start])
    while que:
        s = que.popleft()
        ds = dist[s]
        for t in edge[s]:
            if dist[t] > ds + 1:
                dist[t] = ds + 1
                que.append(t)
    return dist


stoi = BFS(S)
gtoi = BFS(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