結果

問題 No.1190 Points
ユーザー AndrewKAndrewK
提出日時 2020-08-01 11:31:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,363 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 58,880 KB
最終ジャッジ日時 2024-07-07 20:47:45
合計ジャッジ時間 31,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,264 KB
testcase_01 AC 31 ms
11,136 KB
testcase_02 AC 28 ms
11,264 KB
testcase_03 AC 1,098 ms
39,424 KB
testcase_04 AC 1,008 ms
36,096 KB
testcase_05 AC 895 ms
34,688 KB
testcase_06 AC 1,430 ms
45,696 KB
testcase_07 AC 1,553 ms
50,176 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,618 ms
38,656 KB
testcase_12 TLE -
testcase_13 AC 1,356 ms
34,176 KB
testcase_14 AC 268 ms
32,640 KB
testcase_15 TLE -
testcase_16 AC 229 ms
18,304 KB
testcase_17 TLE -
testcase_18 AC 880 ms
25,984 KB
testcase_19 AC 308 ms
39,040 KB
testcase_20 AC 1,251 ms
31,104 KB
testcase_21 AC 492 ms
28,416 KB
testcase_22 AC 402 ms
41,216 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,422 ms
50,432 KB
testcase_26 AC 614 ms
47,872 KB
testcase_27 AC 1,465 ms
50,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import queue
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 = queue.Queue()
q.put([0, s])
while q.empty() == False:
    k = q.get()
    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:
            q.put([cnt, i])
            kyo_s[i][cnt % 2] = cnt

q.put([0, g])
while q.empty() == False:
    k = q.get()
    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:
            q.put([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