結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 47 ms
53,000 KB
testcase_02 AC 41 ms
53,668 KB
testcase_03 AC 40 ms
52,616 KB
testcase_04 AC 555 ms
85,372 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 43 ms
54,288 KB
testcase_08 AC 41 ms
53,280 KB
testcase_09 AC 39 ms
52,936 KB
testcase_10 AC 40 ms
53,604 KB
testcase_11 AC 40 ms
54,152 KB
testcase_12 AC 39 ms
53,072 KB
testcase_13 AC 39 ms
54,036 KB
testcase_14 AC 40 ms
54,124 KB
testcase_15 AC 503 ms
108,252 KB
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappop, heappush

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


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