結果
問題 | No.788 トラックの移動 |
ユーザー | kohei2019 |
提出日時 | 2022-07-29 00:04:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,971 ms / 2,000 ms |
コード長 | 1,539 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 95,672 KB |
最終ジャッジ日時 | 2024-07-18 14:40:21 |
合計ジャッジ時間 | 11,806 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,907 ms
92,636 KB |
testcase_01 | AC | 40 ms
52,480 KB |
testcase_02 | AC | 41 ms
52,736 KB |
testcase_03 | AC | 41 ms
52,992 KB |
testcase_04 | AC | 526 ms
78,972 KB |
testcase_05 | AC | 1,971 ms
95,488 KB |
testcase_06 | AC | 1,918 ms
95,672 KB |
testcase_07 | AC | 44 ms
52,480 KB |
testcase_08 | AC | 42 ms
52,864 KB |
testcase_09 | AC | 43 ms
53,120 KB |
testcase_10 | AC | 42 ms
52,608 KB |
testcase_11 | AC | 44 ms
53,120 KB |
testcase_12 | AC | 45 ms
52,864 KB |
testcase_13 | AC | 41 ms
52,608 KB |
testcase_14 | AC | 40 ms
52,352 KB |
testcase_15 | AC | 486 ms
78,464 KB |
testcase_16 | AC | 1,807 ms
88,312 KB |
ソースコード
import heapq def main(): N,M,L = map(int,input().split()) L -= 1 lst = list(map(int,input().split())) 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)) if sum(lst) == 1: print(0) exit() INF = float('INF') distL = [INF]*(N) used = [False]*(N) distL[L] = 0 h = [(0,L)] while h: c,x = heapq.heappop(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 heapq.heappush(h, (distL[j],j)) ans = INF for i in range(N): st = i distC = [INF]*(N) used = [False]*(N) distC[st] = 0 h = [(0,st)] while h: c,x = heapq.heappop(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 heapq.heappush(h, (distC[j],j)) divmax = -INF sumcost = 0 for k in range(N): sumcost += distC[k]*lst[k]*2 if lst[k] >= 1: divmax = max(divmax,distC[k]-distL[k]) ans = min(ans,sumcost-divmax) print(ans) main()