結果

問題 No.1190 Points
ユーザー AndrewKAndrewK
提出日時 2020-08-01 11:19:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,344 ms / 2,000 ms
コード長 1,398 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 137,140 KB
最終ジャッジ日時 2024-07-07 20:26:38
合計ジャッジ時間 18,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,896 KB
testcase_01 AC 33 ms
53,452 KB
testcase_02 AC 31 ms
54,696 KB
testcase_03 AC 530 ms
102,156 KB
testcase_04 AC 490 ms
98,304 KB
testcase_05 AC 455 ms
98,412 KB
testcase_06 AC 624 ms
106,976 KB
testcase_07 AC 662 ms
111,504 KB
testcase_08 AC 851 ms
117,232 KB
testcase_09 AC 1,067 ms
135,236 KB
testcase_10 AC 881 ms
118,088 KB
testcase_11 AC 810 ms
119,248 KB
testcase_12 AC 985 ms
126,948 KB
testcase_13 AC 783 ms
111,016 KB
testcase_14 AC 123 ms
92,776 KB
testcase_15 AC 1,313 ms
135,728 KB
testcase_16 AC 179 ms
83,792 KB
testcase_17 AC 1,124 ms
130,492 KB
testcase_18 AC 447 ms
93,828 KB
testcase_19 AC 141 ms
100,376 KB
testcase_20 AC 650 ms
104,256 KB
testcase_21 AC 279 ms
92,668 KB
testcase_22 AC 158 ms
99,832 KB
testcase_23 AC 1,344 ms
137,140 KB
testcase_24 AC 1,310 ms
136,776 KB
testcase_25 AC 730 ms
119,216 KB
testcase_26 AC 205 ms
106,248 KB
testcase_27 AC 751 ms
119,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
inf = 3 * (10 ** 18)
n, m, p = map(int, input().split())
s, g = map(int, input().split())
road = [[0 for j in range(0)] for i in range(n + 1)]
kyo_s = [[inf for j in range(2)] for i in range(n + 1)]
kyo_g = [[inf for j in range(2)] for i in range(n + 1)]
kyo_s[s][0] = 0
kyo_g[g][0] = 0
ans = []
for _ in range(m):
    u, v = map(int, input().split())
    road[u].append(v)
    road[v].append(u)

q = []
heapq.heapify(q)
heapq.heappush(q, [0, s])
while len(q):
    k = heapq.heappop(q)
    cnt = k[0]
    x = k[1]
    if kyo_s[x][cnt % 2] < cnt:
        continue
    cnt += 1
    for i in road[x]:
        if kyo_s[i][cnt % 2] > cnt:
            heapq.heappush(q, [cnt, i])
            kyo_s[i][cnt % 2] = cnt

heapq.heappush(q, [0, g])
while len(q):
    k = heapq.heappop(q)
    cnt = k[0]
    x = k[1]
    if kyo_g[x][cnt % 2] < cnt:
        continue
    cnt += 1
    for i in road[x]:
        if kyo_g[i][cnt % 2] > cnt:
            heapq.heappush(q, [cnt, i])
            kyo_g[i][cnt % 2] = cnt

for i in range(1, n+1):
    if p % 2:
        odd = min(kyo_s[i][0] + kyo_g[i][1], kyo_s[i][1] + kyo_g[i][0])
        if odd <= p:
            ans.append(i)
    else:
        even = min(kyo_s[i][0] + kyo_g[i][0], kyo_s[i][1] + kyo_g[i][1])
        if even <= p:
            ans.append(i)

if (len(ans) == 0):
    print(-1)
else:
    print(len(ans))
    for i in ans:
        print(i)
0