結果

問題 No.2805 Go to School
ユーザー detteiuudetteiuu
提出日時 2024-07-12 21:31:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,063 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 123,800 KB
最終ジャッジ日時 2024-07-16 01:37:51
合計ジャッジ時間 17,099 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 324 ms
101,632 KB
testcase_05 AC 511 ms
100,224 KB
testcase_06 AC 401 ms
89,760 KB
testcase_07 AC 332 ms
88,448 KB
testcase_08 AC 406 ms
99,328 KB
testcase_09 AC 362 ms
89,344 KB
testcase_10 AC 320 ms
88,996 KB
testcase_11 AC 1,063 ms
118,144 KB
testcase_12 AC 691 ms
101,860 KB
testcase_13 AC 927 ms
111,488 KB
testcase_14 AC 231 ms
84,276 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 46 ms
51,968 KB
testcase_17 AC 47 ms
51,968 KB
testcase_18 AC 509 ms
94,592 KB
testcase_19 AC 390 ms
88,696 KB
testcase_20 AC 646 ms
103,316 KB
testcase_21 AC 915 ms
116,036 KB
testcase_22 AC 470 ms
96,404 KB
testcase_23 AC 699 ms
102,568 KB
testcase_24 AC 663 ms
100,352 KB
testcase_25 AC 288 ms
90,496 KB
testcase_26 AC 734 ms
123,800 KB
testcase_27 AC 339 ms
107,648 KB
testcase_28 AC 101 ms
82,432 KB
testcase_29 AC 105 ms
83,584 KB
testcase_30 AC 182 ms
100,608 KB
testcase_31 AC 340 ms
92,256 KB
testcase_32 AC 568 ms
120,916 KB
testcase_33 AC 832 ms
118,096 KB
testcase_34 AC 67 ms
67,072 KB
testcase_35 AC 69 ms
67,840 KB
testcase_36 AC 422 ms
90,008 KB
testcase_37 AC 381 ms
91,428 KB
testcase_38 AC 615 ms
103,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

N, M, L, S, E = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    a, b, t = map(int, input().split())
    G[a-1].append((b-1, t))
    G[b-1].append((a-1, t))
T = list(map(int, input().split()))

INF = 10**18
def dijkstra(start):
    dist = [INF]*N
    dist[start] = 0
    visited = [False]*N
    que = [(0, start)]
    while que:
        d, now = heappop(que)
        if visited[now]:
            continue
        visited[now] = True
        for next, weight in G[now]:
            if dist[now]+weight < dist[next]:
                dist[next] = dist[now]+weight
                heappush(que, (dist[next], next))
    return dist

distS = dijkstra(0)
distG = dijkstra(N-1)

ans = INF
for i in range(L):
    if distS[T[i]-1] <= S+E-1:
        ans = min(ans, max(distS[T[i]-1], S)+1+distG[T[i]-1])

print(ans if ans != INF else -1)
0