結果
問題 | No.788 トラックの移動 |
ユーザー | vwxyz |
提出日時 | 2021-12-24 21:19:17 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,830 ms / 2,000 ms |
コード長 | 2,329 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 112,768 KB |
最終ジャッジ日時 | 2024-09-19 20:25:26 |
合計ジャッジ時間 | 11,238 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,821 ms
112,732 KB |
testcase_01 | AC | 37 ms
53,076 KB |
testcase_02 | AC | 37 ms
53,364 KB |
testcase_03 | AC | 38 ms
54,208 KB |
testcase_04 | AC | 491 ms
85,424 KB |
testcase_05 | AC | 1,830 ms
112,768 KB |
testcase_06 | AC | 1,759 ms
112,404 KB |
testcase_07 | AC | 37 ms
54,300 KB |
testcase_08 | AC | 38 ms
53,076 KB |
testcase_09 | AC | 37 ms
53,632 KB |
testcase_10 | AC | 38 ms
54,448 KB |
testcase_11 | AC | 38 ms
54,316 KB |
testcase_12 | AC | 37 ms
54,024 KB |
testcase_13 | AC | 36 ms
53,792 KB |
testcase_14 | AC | 38 ms
54,536 KB |
testcase_15 | AC | 527 ms
109,560 KB |
testcase_16 | AC | 1,797 ms
112,456 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 if not graph: self.edges=edges self.graph=[[] for i in range(self.V)] if weighted: for i,j,d in self.edges: self.graph[i].append((j,d)) if not self.directed: self.graph[j].append((i,d)) else: for i,j in self.edges: self.graph[i].append(j) if not self.directed: self.graph[j].append(i) else: self.graph=graph self.edges=[] for i in range(self.V): if self.weighted: for j,d in self.graph[i]: if self.directed or not self.directed and i<=j: self.edges.append((i,j,d)) else: for j in self.graph[i]: if self.directed or not self.directed and i<=j: self.edges.append((i,j)) 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())) edges=[] for _ in range(M): a,b,c=map(int,readline().split()) a-=1;b-=1 edges.append((a,b,c)) G=Graph(N,edges=edges,weighted=True) dist=[G.Dijkstra(i) for i in range(N)] ans=1<<60 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 range(N) if T[j]) ans=min(ans,s) print(ans)