結果
問題 | No.788 トラックの移動 |
ユーザー | SSlime |
提出日時 | 2020-06-17 16:08:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,062 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 25,536 KB |
最終ジャッジ日時 | 2024-07-03 12:16:35 |
合計ジャッジ時間 | 6,509 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import sys input = sys.stdin.readline n,m,l = map(int,input().split()) l -= 1 T = list(map(int,input().split())) from heapq import heapify, heappop, heappush def Dijkstra(n,path,start): inf = float('inf') d = [inf]*n d[start] = 0 pq = [(0, start)] heapify(pq) while pq: dist, p = heappop(pq) if dist > d[p]:continue for nxt,cost in path[p].items(): if dist + cost >= d[nxt]:continue d[nxt] = dist + cost heappush(pq,(d[nxt],nxt)) return d path = [{} for _ in range(n)] for i in range(m): a,b,c = map(int,input().split()) a -= 1 b -= 1 path[a][b] = c path[b][a] = c ld = Dijkstra(n,path,l) def total(n,path,t,start,ld): d = Dijkstra(n,path,start) res = 0 delta = ld[start] for i in range(n): res += 2*d[i]*t[i] if t[i] > 0: delta = min(delta, ld[i] - d[i]) if res == 0:return res else: return res + delta ans = float('inf') for i in range(n): ans = min(ans,total(n,path,T,i,ld)) print(ans)