結果
問題 | No.788 トラックの移動 |
ユーザー | roaris |
提出日時 | 2020-12-03 10:12:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 955 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 81,824 KB |
実行使用メモリ | 111,876 KB |
最終ジャッジ日時 | 2024-09-13 17:57:27 |
合計ジャッジ時間 | 12,415 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 40 ms
52,736 KB |
testcase_02 | AC | 39 ms
52,224 KB |
testcase_03 | AC | 40 ms
52,864 KB |
testcase_04 | AC | 523 ms
85,036 KB |
testcase_05 | AC | 1,941 ms
111,156 KB |
testcase_06 | AC | 1,951 ms
110,996 KB |
testcase_07 | AC | 40 ms
52,736 KB |
testcase_08 | AC | 39 ms
52,864 KB |
testcase_09 | AC | 40 ms
53,120 KB |
testcase_10 | AC | 39 ms
52,736 KB |
testcase_11 | AC | 41 ms
52,864 KB |
testcase_12 | AC | 40 ms
53,104 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 516 ms
107,840 KB |
testcase_16 | AC | 1,918 ms
111,516 KB |
ソースコード
import sys input = sys.stdin.readline from heapq import * def dijkstra(s): dist = [10**18]*N dist[s] = 0 pq = [] heappush(pq, (0, s)) while pq: d, v = heappop(pq) if dist[v]<d: continue for nv, w in G[v]: if dist[nv]>dist[v]+w: dist[nv] = dist[v]+w heappush(pq, (dist[nv], nv)) return dist N, M, L = map(int, input().split()) t = list(map(int, input().split())) G = [[] for _ in range(N)] for _ in range(M): a, b, c = map(int, input().split()) G[a-1].append((b-1, c)) G[b-1].append((a-1, c)) D = [dijkstra(i) for i in range(N)] ans = 10**18 for i in range(N): base = 0 for j in range(N): base += 2*t[j]*D[i][j] for j in range(N): cand = base+D[L-1][j]+D[j][i] if t[j]>=1: cand -= 2*D[i][j] ans = min(ans, cand) print(ans)