結果

問題 No.788 トラックの移動
ユーザー kohei2019kohei2019
提出日時 2022-07-29 00:19:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,932 ms / 2,000 ms
コード長 1,599 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 95,392 KB
最終ジャッジ日時 2024-05-08 23:09:56
合計ジャッジ時間 12,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,858 ms
91,684 KB
testcase_01 AC 40 ms
54,400 KB
testcase_02 AC 40 ms
54,124 KB
testcase_03 AC 40 ms
54,216 KB
testcase_04 AC 515 ms
79,252 KB
testcase_05 AC 1,913 ms
94,360 KB
testcase_06 AC 1,932 ms
95,392 KB
testcase_07 AC 42 ms
53,400 KB
testcase_08 AC 41 ms
53,604 KB
testcase_09 AC 41 ms
54,460 KB
testcase_10 AC 41 ms
53,464 KB
testcase_11 AC 42 ms
54,076 KB
testcase_12 AC 42 ms
55,428 KB
testcase_13 AC 41 ms
53,076 KB
testcase_14 AC 41 ms
53,084 KB
testcase_15 AC 436 ms
78,212 KB
testcase_16 AC 1,912 ms
87,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.readline
hpop = heapq.heappop
hpush = heapq.heappush
def main():
    N,M,L = map(int,input().split())
    L -= 1
    lst = list(map(int,input().split()))
    if sum(lst) == 1:
        print(0)
        exit()
    lsg = [[] for i in range(N)]
    for i in range(M):
        a,b,c = map(int,input().split())
        a -= 1
        b -= 1
        lsg[a].append((b,c))
        lsg[b].append((a,c))
    INF = 10**10
    distL = [INF]*(N)
    used = [False]*(N)
    distL[L] = 0
    h = [(0,L)]
    while h:
        c,x = hpop(h)
        if used[x]:
            continue
        used[x] = True
        for j,cos in lsg[x]:
            if used[j]:
                continue
            if distL[j] > distL[x]+cos:
                distL[j] = distL[x]+cos
                hpush(h, (distL[j],j))
    ans = 10**18
    for i in range(N):
        distC = [INF]*(N)
        used = [False]*(N)
        distC[i] = 0
        h = [(0,i)]
        while h:
            c,x = hpop(h)
            if used[x]:
                continue
            used[x] = True
            for j,cos in lsg[x]:
                if used[j]:
                    continue
                if distC[j] > distC[x]+cos:
                    distC[j] = distC[x]+cos
                    hpush(h, (distC[j],j))
        divmax = -INF
        sumcost = 0
        for k in range(N):
            sumcost += distC[k]*lst[k]*2
            if lst[k] >= 1 and divmax<(distC[k]-distL[k]):
                divmax = distC[k]-distL[k]
        if ans>(sumcost-divmax):
            ans = sumcost-divmax
    print(ans)
main()
0