結果

問題 No.2805 Go to School
ユーザー N-noa21N-noa21
提出日時 2024-09-30 14:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 908 ms / 2,000 ms
コード長 1,029 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 122,412 KB
最終ジャッジ日時 2024-09-30 14:35:43
合計ジャッジ時間 16,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,992 KB
testcase_01 AC 35 ms
53,120 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 272 ms
100,736 KB
testcase_05 AC 433 ms
100,200 KB
testcase_06 AC 329 ms
89,728 KB
testcase_07 AC 271 ms
88,636 KB
testcase_08 AC 333 ms
100,416 KB
testcase_09 AC 330 ms
89,584 KB
testcase_10 AC 270 ms
89,800 KB
testcase_11 AC 908 ms
115,828 KB
testcase_12 AC 555 ms
100,644 KB
testcase_13 AC 769 ms
110,380 KB
testcase_14 AC 206 ms
82,868 KB
testcase_15 AC 37 ms
54,136 KB
testcase_16 AC 35 ms
53,276 KB
testcase_17 AC 34 ms
53,348 KB
testcase_18 AC 460 ms
94,544 KB
testcase_19 AC 372 ms
88,656 KB
testcase_20 AC 525 ms
103,104 KB
testcase_21 AC 774 ms
113,884 KB
testcase_22 AC 418 ms
94,800 KB
testcase_23 AC 648 ms
101,328 KB
testcase_24 AC 576 ms
100,352 KB
testcase_25 AC 252 ms
90,216 KB
testcase_26 AC 666 ms
122,412 KB
testcase_27 AC 264 ms
106,772 KB
testcase_28 AC 82 ms
81,928 KB
testcase_29 AC 91 ms
82,944 KB
testcase_30 AC 148 ms
99,324 KB
testcase_31 AC 308 ms
90,708 KB
testcase_32 AC 461 ms
120,780 KB
testcase_33 AC 698 ms
117,008 KB
testcase_34 AC 57 ms
68,064 KB
testcase_35 AC 59 ms
69,052 KB
testcase_36 AC 344 ms
89,964 KB
testcase_37 AC 308 ms
90,816 KB
testcase_38 AC 521 ms
101,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,L,S,E = map(int, input().split())

edge = [[] for i in range(N)]

for i in range(M):
    a,b,t = map(int, input().split())
    a-=1;b-=1
    edge[a].append((b,t))
    edge[b].append((a,t))
toilet = list(map(int, input().split()))

from heapq import heappush, heappop
INF = 10**16
def dijkstra(N, edge, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in edge[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist

dist1 = dijkstra(N,edge,0)
dist2 = dijkstra(N,edge,N-1)
#print(dist1)
#print(dist2)
st,en = S,S+E-1
#print(st,en)
ans = 10**16
for i in toilet:
    i-=1
    if dist1[i] < st:
        now = st+1
    elif st <= dist1[i] <= en:
        now = dist1[i]+1
    else:
        continue
    if dist2[i] == 10**16:
        continue
    now += dist2[i]
    ans = min(ans,now)
print(ans if ans != 10**16 else -1)
0