結果

問題 No.2805 Go to School
ユーザー ra5anchorra5anchor
提出日時 2024-07-13 19:50:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 859 ms / 2,000 ms
コード長 1,150 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 126,624 KB
最終ジャッジ日時 2024-07-16 01:42:48
合計ジャッジ時間 15,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,616 KB
testcase_01 AC 38 ms
52,644 KB
testcase_02 AC 37 ms
53,376 KB
testcase_03 AC 38 ms
53,940 KB
testcase_04 AC 316 ms
101,756 KB
testcase_05 AC 467 ms
100,812 KB
testcase_06 AC 374 ms
90,688 KB
testcase_07 AC 318 ms
89,032 KB
testcase_08 AC 404 ms
100,812 KB
testcase_09 AC 350 ms
89,052 KB
testcase_10 AC 250 ms
88,884 KB
testcase_11 AC 713 ms
111,600 KB
testcase_12 AC 460 ms
97,696 KB
testcase_13 AC 605 ms
105,392 KB
testcase_14 AC 177 ms
84,080 KB
testcase_15 AC 38 ms
53,008 KB
testcase_16 AC 37 ms
53,904 KB
testcase_17 AC 38 ms
53,688 KB
testcase_18 AC 479 ms
95,208 KB
testcase_19 AC 389 ms
90,060 KB
testcase_20 AC 617 ms
104,780 KB
testcase_21 AC 859 ms
117,096 KB
testcase_22 AC 437 ms
96,400 KB
testcase_23 AC 681 ms
103,052 KB
testcase_24 AC 638 ms
101,648 KB
testcase_25 AC 262 ms
90,736 KB
testcase_26 AC 699 ms
126,624 KB
testcase_27 AC 302 ms
108,872 KB
testcase_28 AC 84 ms
81,652 KB
testcase_29 AC 94 ms
82,444 KB
testcase_30 AC 170 ms
101,936 KB
testcase_31 AC 317 ms
91,596 KB
testcase_32 AC 538 ms
123,084 KB
testcase_33 AC 801 ms
118,972 KB
testcase_34 AC 62 ms
68,056 KB
testcase_35 AC 64 ms
69,312 KB
testcase_36 AC 385 ms
90,400 KB
testcase_37 AC 347 ms
92,360 KB
testcase_38 AC 433 ms
100,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from heapq import heapify, heappop, heappush

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

stt = 0
dist1 = dijk(G, stt)

Tok = []
for toilet in T:
    if dist1[toilet] < E:
        tim = max(dist1[toilet], S)
        Tok.append((toilet, tim))

if len(Tok) == 0:
    print(-1)
    exit()

dist2 = dijk(G, N-1)
ans = 10**18
for toilet, t1 in Tok:
    ttot = t1 + 1 + dist2[toilet]
    ans = min(ans, ttot)

if ans == 10**18:
    print(-1)
else:
    print(ans)

0