結果
問題 |
No.1344 Typical Shortest Path Sum
|
ユーザー |
![]() |
提出日時 | 2021-01-16 18:39:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,650 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 76,752 KB |
最終ジャッジ日時 | 2024-11-27 23:31:13 |
合計ジャッジ時間 | 7,250 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 74 WA * 3 |
ソースコード
class WarshallFloyd(): def __init__(self, N): self.N = N self.d = [[float("inf") for i in range(N)] for i in range(N)] # d[u][v] : 辺uvのコスト(存在しないときはinf) def add(self, u, v, c, directed=False): """ 0-indexedであることに注意 u = from, v = to, c = cost directed = Trueなら、有向グラフである """ if directed is False: self.d[u][v] = c self.d[v][u] = c else: self.d[u][v] = c def WarshallFloyd_search(self): # これを d[i][j]: iからjへの最短距離 にする # 本来無向グラフでのみ全域木を考えるが、二重辺なら有向でも行けそう # d[i][i] < 0 なら、グラフは負のサイクルを持つ for k in range(self.N): for i in range(self.N): for j in range(self.N): self.d[i][j] = min( self.d[i][j], self.d[i][k] + self.d[k][j]) hasNegativeCycle = False for i in range(self.N): if self.d[i][i] < 0: hasNegativeCycle = True break for i in range(self.N): self.d[i][i] = 0 return hasNegativeCycle, self.d N, M = map(int, input().split()) ABT = [list(map(int, input().split())) for i in range(M)] graph = WarshallFloyd(N) for a, b, t in ABT: graph.add(a-1, b-1, t, True) hasNegativeCycle, D = graph.WarshallFloyd_search() for costs in D: ans = 0 for cost in costs: if cost != float("inf"): ans+=cost print(ans)