結果
問題 | No.807 umg tours |
ユーザー | vwxyz |
提出日時 | 2021-12-25 02:18:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,462 bytes |
コンパイル時間 | 75 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 355,396 KB |
最終ジャッジ日時 | 2024-09-20 01:42:53 |
合計ジャッジ時間 | 24,300 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
11,136 KB |
testcase_01 | AC | 36 ms
11,136 KB |
testcase_02 | AC | 36 ms
11,648 KB |
testcase_03 | AC | 34 ms
11,520 KB |
testcase_04 | AC | 33 ms
11,136 KB |
testcase_05 | AC | 34 ms
11,264 KB |
testcase_06 | AC | 36 ms
11,776 KB |
testcase_07 | AC | 34 ms
11,648 KB |
testcase_08 | AC | 30 ms
10,880 KB |
testcase_09 | AC | 32 ms
10,880 KB |
testcase_10 | AC | 32 ms
11,008 KB |
testcase_11 | AC | 3,112 ms
267,228 KB |
testcase_12 | AC | 2,670 ms
205,908 KB |
testcase_13 | AC | 3,795 ms
287,152 KB |
testcase_14 | AC | 1,654 ms
131,328 KB |
testcase_15 | AC | 1,151 ms
107,892 KB |
testcase_16 | AC | 3,968 ms
305,248 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
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=map(int,readline().split()) edges0=[] edges1=[] for _ in range(M): a,b,c=map(int,readline().split()) a-=1;b-=1 edges0.append((a,b,c)) edges1.append((a,b,c)) edges1.append((b,a,c)) edges1.append((a+N,b+N,c)) edges1.append((b+N,a+N,c)) edges1.append((a,b+N,0)) edges1.append((b,a+N,0)) for i in range(N): edges1.append((i,i+N,0)) G0=Graph(N,edges=edges0,weighted=True) G1=Graph(2*N,edges=edges1,weighted=True,directed=True) dist0=G0.Dijkstra(0) dist1=G1.Dijkstra(0) for i in range(N): ans=dist0[i]+dist1[i+N] print(ans)