結果

問題 No.788 トラックの移動
ユーザー nephrologistnephrologist
提出日時 2020-02-26 22:11:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,899 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 115,356 KB
最終ジャッジ日時 2024-10-13 15:32:04
合計ジャッジ時間 11,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,861 ms
115,036 KB
testcase_01 AC 39 ms
53,148 KB
testcase_02 AC 38 ms
53,032 KB
testcase_03 AC 37 ms
53,248 KB
testcase_04 AC 523 ms
85,904 KB
testcase_05 AC 1,842 ms
114,596 KB
testcase_06 AC 1,831 ms
115,356 KB
testcase_07 AC 38 ms
53,060 KB
testcase_08 AC 39 ms
54,200 KB
testcase_09 AC 36 ms
52,760 KB
testcase_10 AC 36 ms
54,108 KB
testcase_11 AC 38 ms
54,448 KB
testcase_12 AC 39 ms
54,200 KB
testcase_13 AC 37 ms
52,912 KB
testcase_14 AC 39 ms
54,876 KB
testcase_15 AC 543 ms
109,360 KB
testcase_16 AC 1,899 ms
115,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
#dijkstra?
from heapq import heappop, heappush, heapify
n,m,l=map(int,input().split())
T=list(map(int,input().split()))
graph=[[] for _ in range(n+1)]
dist=[[10**10]*(n+1) for _ in range(n+1)]
if T.count(0)==n-1:
    print(0)
else:
    for _ in range(m):
        a,b,c=map(int,input().split())
        graph[a].append((c,b))
        graph[b].append((c,a))
    def dij(s,graph,dist):
        used=[False]*(n+1)
        used[s]=True
        dist[s][s]=0
        edgelist=[]
        for es in graph[s]:
            heappush(edgelist,es)
        while edgelist:
            kyori,ten=heappop(edgelist)
            if used[ten]==True:
                continue
            dist[s][ten]=kyori
            used[ten]=True
            for es in graph[ten]:
                if used[es[1]]==False:
                    heappush(edgelist,(es[0]+dist[s][ten], es[1]))
        return dist
    ans=10**20
    for i in range(1,n+1):
        dist=dij(i, graph,dist)
    for p in range(1,n+1):
        ouhuku=0
        for j in range(n):
            ouhuku+=2*T[j]*dist[p][j+1]
        for first in range(1,n+1):
            if T[first-1]==0:
                continue
            if first==p:
                temp=ouhuku+dist[l][first]
            else:
                temp=ouhuku+dist[l][first]+dist[first][p]-(dist[p][first]*2)
            ans=min(ans,temp)
    print(ans)
0