結果
問題 | No.1344 Typical Shortest Path Sum |
ユーザー | arahi10 |
提出日時 | 2021-02-19 20:09:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 375 ms / 2,000 ms |
コード長 | 920 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-09-16 16:08:34 |
合計ジャッジ時間 | 10,649 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 77 |
ソースコード
from heapq import heappop, heappush n,m=map(int,input().split()) class WarshallFloyd: #O(V^3)で任意2頂点の最短距離 def __init__(self,n,_first_index=0): self.v = n self._first_idx=_first_index self.d = [[float("INF")]*(n) for _ in range(n)] for i in range(n): self.d[i][i] = 0 def path(self,x,y,c): if x == y: return False f=self._first_idx self.d[x-f][y-f] = min(c,self.d[x-f][y-f]) #self.d[y-f][x-f] = c return True def build(self): for k in range(self.v): for i in range(self.v): for j in range(self.v): self.d[i][j] = min(self.d[i][j], self.d[i][k] + self.d[k][j]) for x in self.d: print(sum(c for c in x if c!=float("INF"))) w=WarshallFloyd(n,1) for i in range(m): w.path(*map(int,input().split())) w.build()