結果

問題 No.788 トラックの移動
ユーザー titiatitia
提出日時 2024-05-15 03:28:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 953 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 111,776 KB
最終ジャッジ日時 2024-05-15 03:28:43
合計ジャッジ時間 13,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 41 ms
53,556 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 40 ms
53,244 KB
testcase_04 AC 564 ms
85,440 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 42 ms
54,232 KB
testcase_08 AC 41 ms
53,408 KB
testcase_09 AC 41 ms
54,780 KB
testcase_10 AC 41 ms
53,012 KB
testcase_11 AC 42 ms
53,760 KB
testcase_12 AC 41 ms
53,216 KB
testcase_13 AC 39 ms
53,420 KB
testcase_14 AC 40 ms
54,124 KB
testcase_15 AC 488 ms
108,756 KB
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush


N,M,L=map(int,input().split())
T=list(map(int,input().split()))

if T.count(0)>=N-1:
    print(0)
    exit()

L-=1
E=[[] for i in range(N)]

for i in range(M):
    a,b,c=map(int,input().split())
    a-=1
    b-=1
    E[a].append((b,c))
    E[b].append((a,c))

D=[[1<<60]*N for i in range(N)]

for i in range(N):
    D[i][i]=0
    Q=[(0,i)]

    while Q:
        dis,ind=heappop(Q)
        
        if D[i][ind]!=dis:
            continue

        for to,length in E[ind]:
            if D[i][to]>dis+length:
                D[i][to]=dis+length
                heappush(Q,(D[i][to],to))

ANS=1<<63

for i in range(N):
    score=0
    for j in range(N):
        score+=T[j]*D[i][j]*2

    for j in range(N):
        if T[j]>0:
            score+=D[L][j]-D[i][j]
            ANS=min(ANS,score)
            
            score-=D[L][j]-D[i][j]

print(ANS)
        
                
0