結果
問題 | No.788 トラックの移動 |
ユーザー | vwxyz |
提出日時 | 2022-09-27 16:15:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,747 ms / 2,000 ms |
コード長 | 1,435 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 82,012 KB |
実行使用メモリ | 112,216 KB |
最終ジャッジ日時 | 2024-06-02 01:06:20 |
合計ジャッジ時間 | 10,809 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,747 ms
111,896 KB |
testcase_01 | AC | 34 ms
53,000 KB |
testcase_02 | AC | 34 ms
53,932 KB |
testcase_03 | AC | 35 ms
53,280 KB |
testcase_04 | AC | 478 ms
85,172 KB |
testcase_05 | AC | 1,672 ms
112,028 KB |
testcase_06 | AC | 1,650 ms
112,136 KB |
testcase_07 | AC | 34 ms
53,928 KB |
testcase_08 | AC | 33 ms
53,996 KB |
testcase_09 | AC | 33 ms
54,388 KB |
testcase_10 | AC | 34 ms
53,080 KB |
testcase_11 | AC | 35 ms
54,348 KB |
testcase_12 | AC | 34 ms
55,044 KB |
testcase_13 | AC | 34 ms
53,692 KB |
testcase_14 | AC | 34 ms
55,412 KB |
testcase_15 | AC | 485 ms
109,080 KB |
testcase_16 | AC | 1,686 ms
112,216 KB |
ソースコード
import sys readline=sys.stdin.readline import heapq class Graph: def __init__(self,V,edges=False,graph=False,directed=False,weighted=False,inf=float("inf")): self.V=V self.directed=directed self.weighted=weighted self.inf=inf self.graph=graph def Dijkstra(self,s,route_restoration=False): dist=[self.inf]*self.V dist[s]=0 hq=[(0,s)] if route_restoration: parents=[None]*self.V while hq: dx,x=heapq.heappop(hq) if dist[x]<dx: continue for y,dy in self.graph[x]: if dist[y]>dx+dy: dist[y]=dx+dy if route_restoration: parents[y]=x heapq.heappush(hq,(dist[y],y)) if route_restoration: return dist,parents else: return dist N,M,L=map(int,readline().split()) L-=1 T=list(map(int,readline().split())) graph=[[] for i in range(N)] for _ in range(M): a,b,c=map(int,readline().split()) a-=1;b-=1 graph[a].append((b,c)) graph[b].append((a,c)) inf=1<<60 G=Graph(N,graph=graph,weighted=True,inf=inf) dist=[G.Dijkstra(i) for i in range(N)] ans=inf idx=[j for j in range(N) if T[j]] for i in range(N): s=sum(T[j]*dist[i][j] for j in range(N))*2 if s: s+=min(dist[L][j]-dist[i][j] for j in idx) ans=min(ans,s) print(ans)