結果

問題 No.788 トラックの移動
ユーザー H3PO4H3PO4
提出日時 2024-06-20 22:15:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,035 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 112,356 KB
最終ジャッジ日時 2024-06-20 22:15:31
合計ジャッジ時間 13,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 38 ms
53,092 KB
testcase_03 AC 39 ms
53,264 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 47 ms
55,008 KB
testcase_14 AC 39 ms
53,008 KB
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappop, heappush

input = sys.stdin.buffer.readline
INF = 10**9


def dijkstra(N, G, 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 G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist


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

dist_all = []
for source in range(N):
    dist_all.append(dijkstra(N, G, source))
ans = INF
for target in range(N):
    s = 0
    for x in range(N):
        s += T[x] * 2 * dist_all[x][target]
    m = 0
    for x in range(N):
        if T[x] == 0:
            continue
        m = max(m, dist_all[target][x] - dist_all[L][x])
    ans = min(ans, s - m)
print(ans)
0