結果
問題 | No.788 トラックの移動 |
ユーザー | mkawa2 |
提出日時 | 2021-02-12 00:07:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,914 ms / 2,000 ms |
コード長 | 1,025 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 259,044 KB |
最終ジャッジ日時 | 2024-07-18 10:56:48 |
合計ジャッジ時間 | 11,908 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,914 ms
258,292 KB |
testcase_01 | AC | 36 ms
53,144 KB |
testcase_02 | AC | 37 ms
54,580 KB |
testcase_03 | AC | 36 ms
54,460 KB |
testcase_04 | AC | 525 ms
144,444 KB |
testcase_05 | AC | 1,860 ms
257,852 KB |
testcase_06 | AC | 1,815 ms
258,584 KB |
testcase_07 | AC | 37 ms
52,620 KB |
testcase_08 | AC | 36 ms
53,476 KB |
testcase_09 | AC | 38 ms
53,392 KB |
testcase_10 | AC | 36 ms
53,160 KB |
testcase_11 | AC | 41 ms
53,688 KB |
testcase_12 | AC | 38 ms
53,020 KB |
testcase_13 | AC | 39 ms
52,948 KB |
testcase_14 | AC | 36 ms
54,112 KB |
testcase_15 | AC | 553 ms
234,300 KB |
testcase_16 | AC | 1,839 ms
259,044 KB |
ソースコード
import sys def MI(): return map(int, sys.stdin.buffer.readline().split()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) inf = 10**16 from heapq import * def dijk(u): hp = [] dist = [inf]*n dist[u] = 0 heappush(hp, (0, u)) while hp: d, u = heappop(hp) if d > dist[u]: continue for v, c in to[u]: nd = d+c if nd >= dist[v]: continue dist[v] = nd heappush(hp, (nd, v)) return dist n, m, l = MI() l -= 1 tt = LI() if tt.count(0) >= n-1: print(0) exit() to = [[] for _ in range(n)] for _ in range(m): a, b, c = MI() a, b = a-1, b-1 to[a].append((b, c)) to[b].append((a, c)) dd = [] for u in range(n): dd+=dijk(u) # print(dd) ans = inf for g in range(n): mn = inf for s in range(n): if tt[s] == 0: continue cur = dd[l*n+s]-dd[s*n+g] if cur < mn: mn = cur mn += sum(tt[u]*dd[u*n+g] for u in range(n))*2 if mn < ans: ans = mn print(ans)