結果
問題 | No.788 トラックの移動 |
ユーザー | rlangevin |
提出日時 | 2023-10-03 08:56:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,404 bytes |
コンパイル時間 | 451 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 118,776 KB |
最終ジャッジ日時 | 2024-07-26 13:59:13 |
合計ジャッジ時間 | 11,856 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,845 ms
118,044 KB |
testcase_01 | AC | 36 ms
53,248 KB |
testcase_02 | AC | 35 ms
52,864 KB |
testcase_03 | AC | 38 ms
52,608 KB |
testcase_04 | AC | 493 ms
85,888 KB |
testcase_05 | AC | 1,830 ms
117,868 KB |
testcase_06 | AC | 1,894 ms
118,776 KB |
testcase_07 | AC | 36 ms
53,120 KB |
testcase_08 | AC | 37 ms
53,248 KB |
testcase_09 | AC | 35 ms
53,300 KB |
testcase_10 | AC | 38 ms
53,120 KB |
testcase_11 | AC | 39 ms
53,376 KB |
testcase_12 | AC | 37 ms
53,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 732 ms
109,048 KB |
testcase_16 | AC | 1,758 ms
116,492 KB |
ソースコード
import sys readline = sys.stdin.readline from heapq import heappush, heappop inf = float('inf') def dijkstra(s, g, N): # ゴールがない場合はg=-1とする。 def cost(v, m): return v * N + m dist = [inf] * N mindist = [inf] * N seen = [False] * N Q = [cost(0, s)] while Q: c, m = divmod(heappop(Q), N) if seen[m]: continue seen[m] = True dist[m] = c if m == g: return dist #------heapをアップデートする。-------- for u, C in G[m]: if seen[u]: continue newdist = dist[m] + C #------------------------------------ if newdist >= mindist[u]: continue mindist[u] = newdist heappush(Q, cost(newdist, u)) return dist N, M, L = map(int, input().split()) L -= 1 T = list(map(int, input().split())) G = [[] for i in range(N)] for i in range(M): a, b, c = map(int, input().split()) a, b = a - 1, b - 1 G[a].append((b, c)) G[b].append((a, c)) D = [] for i in range(N): D.append(dijkstra(i, -1, N)) ans = inf for i in range(N): S = 0 for j in range(N): S += D[i][j] * T[j] * 2 for j in range(N): temp = D[L][j] + D[j][i] if T[j]: temp -= 2 * D[i][j] ans = min(ans, S + temp) print(ans)