結果

問題 No.2805 Go to School
ユーザー rlangevinrlangevin
提出日時 2024-07-12 21:26:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,384 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 125,272 KB
最終ジャッジ日時 2024-07-12 21:26:42
合計ジャッジ時間 17,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 511 ms
99,380 KB
testcase_05 AC 411 ms
89,860 KB
testcase_06 AC 397 ms
88,944 KB
testcase_07 AC 457 ms
100,188 KB
testcase_08 AC 437 ms
89,856 KB
testcase_09 AC 339 ms
89,560 KB
testcase_10 AC 1,073 ms
125,272 KB
testcase_11 AC 706 ms
105,696 KB
testcase_12 AC 973 ms
117,124 KB
testcase_13 AC 248 ms
86,920 KB
testcase_14 AC 40 ms
52,608 KB
testcase_15 AC 41 ms
52,608 KB
testcase_16 AC 42 ms
52,480 KB
testcase_17 AC 620 ms
97,876 KB
testcase_18 AC 462 ms
91,912 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 523 ms
100,732 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 231 ms
89,732 KB
testcase_25 AC 604 ms
120,628 KB
testcase_26 AC 356 ms
115,712 KB
testcase_27 AC 92 ms
85,504 KB
testcase_28 AC 102 ms
86,556 KB
testcase_29 AC 186 ms
108,160 KB
testcase_30 AC 392 ms
94,860 KB
testcase_31 AC 512 ms
118,108 KB
testcase_32 AC 738 ms
115,976 KB
testcase_33 AC 64 ms
67,072 KB
testcase_34 AC 66 ms
67,840 KB
testcase_35 AC 434 ms
93,032 KB
testcase_36 WA -
testcase_37 AC 734 ms
114,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
inf = float('inf')
def dijkstra(s, g, G):
    # ゴールがない場合はg=-1とする。

    N = len(G)

    def cost(v, m):
        return v * N + m

    dist = [inf] * N
    mindist = [inf] * N
    seen = [False] * N
    Q = [cost(0, s)]
    while Q:
        c, m = divmod(heappop(Q), N)
        if seen[m]:
            continue
        seen[m] = True
        dist[m] = c
        if m == g:
            return dist

        #------heapをアップデートする。--------
        for u, C in G[m]:
            if seen[u]:
                continue
            newdist = dist[m] + C

            #------------------------------------
            if newdist >= mindist[u]:
                continue
            mindist[u] = newdist
            heappush(Q, cost(newdist, u))
    return dist

N, M, L, S, E = map(int, input().split())
G = [[] for i in range(N)]
for i in range(M):
    u, v, c = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append((v, c))
    G[v].append((u, c))

T = list(map(int, input().split()))
D0 = dijkstra(0, -1, G)
DN = dijkstra(N - 1, -1, G)
if D0[-1] <= S + E - 1:
    print(max(S + 1, D0[-1] + 1))
    exit()
    
inf = 10 ** 18
ans = inf
for i in range(L):
    if D0[T[i]-1] > S + E:
        continue
    ans = min(ans, max(S + 1, D0[T[i]-1]) + DN[T[i]-1])
    
print(ans) if ans < inf//2 else print(-1)
0