結果

問題 No.2805 Go to School
ユーザー ntudantuda
提出日時 2024-07-13 17:05:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,112 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 137,540 KB
最終ジャッジ日時 2024-07-16 01:42:38
合計ジャッジ時間 18,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,816 KB
testcase_01 AC 43 ms
53,240 KB
testcase_02 AC 43 ms
53,332 KB
testcase_03 AC 42 ms
52,804 KB
testcase_04 AC 400 ms
121,272 KB
testcase_05 AC 517 ms
114,508 KB
testcase_06 AC 392 ms
96,936 KB
testcase_07 AC 334 ms
96,608 KB
testcase_08 AC 439 ms
111,540 KB
testcase_09 AC 376 ms
96,524 KB
testcase_10 AC 350 ms
99,140 KB
testcase_11 AC 1,112 ms
134,296 KB
testcase_12 AC 716 ms
113,760 KB
testcase_13 AC 978 ms
128,172 KB
testcase_14 AC 242 ms
86,084 KB
testcase_15 AC 43 ms
54,432 KB
testcase_16 AC 43 ms
52,960 KB
testcase_17 AC 43 ms
53,548 KB
testcase_18 AC 510 ms
104,012 KB
testcase_19 AC 416 ms
94,872 KB
testcase_20 AC 697 ms
119,888 KB
testcase_21 AC 951 ms
129,752 KB
testcase_22 AC 503 ms
100,572 KB
testcase_23 AC 784 ms
114,576 KB
testcase_24 AC 718 ms
112,712 KB
testcase_25 AC 300 ms
94,052 KB
testcase_26 AC 840 ms
134,364 KB
testcase_27 AC 348 ms
112,668 KB
testcase_28 AC 92 ms
79,200 KB
testcase_29 AC 98 ms
79,460 KB
testcase_30 AC 162 ms
91,864 KB
testcase_31 AC 414 ms
98,840 KB
testcase_32 AC 632 ms
137,540 KB
testcase_33 AC 935 ms
137,152 KB
testcase_34 AC 70 ms
69,000 KB
testcase_35 AC 71 ms
71,252 KB
testcase_36 AC 416 ms
95,716 KB
testcase_37 AC 400 ms
97,880 KB
testcase_38 AC 654 ms
114,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N, M, L, S, E0 = map(int, input().split())
ABT = [list(map(int, input().split())) for _ in range(M)]
T = [i - 1 for i in list(map(int, input().split()))]
E = [[] for _ in range(N)]

for a, b, t in ABT:
    a -= 1;
    b -= 1
    E[a].append((b, t))
    E[b].append((a, t))

INF = 10 ** 15
D = [[INF] * N for _ in range(2)]


def dijkstra(st, idx):
    D[idx][st] = 0
    q = [(0, st)]
    while q:
        d, u = heappop(q)
        # 下のifでTLE解消することがある
        if d > D[idx][u]: continue
        for i in E[u]:
            a, b = i
            if D[idx][a] > D[idx][u] + b:
                D[idx][a] = D[idx][u] + b
                heappush(q, (D[idx][a], a))
    return


dijkstra(0, 0)
dijkstra(N - 1, 1)
ans = INF
for t in T:
    if D[0][t] > S + E0:
        continue
    if D[0][t] < S:
        ans = min(ans, S + 1 + D[1][t])
    else:
        ans = min(ans, D[0][t] + D[1][t] + 1)
if ans == INF:
    print(-1)
else:
    print(ans)
0