結果
問題 | No.1320 Two Type Min Cost Cycle |
ユーザー | chineristAC |
提出日時 | 2020-12-17 00:32:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,317 ms / 2,000 ms |
コード長 | 1,432 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 200,304 KB |
最終ジャッジ日時 | 2024-09-20 05:35:24 |
合計ジャッジ時間 | 21,568 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,992 KB |
testcase_01 | AC | 39 ms
53,376 KB |
testcase_02 | AC | 37 ms
52,736 KB |
testcase_03 | AC | 36 ms
52,096 KB |
testcase_04 | AC | 36 ms
52,352 KB |
testcase_05 | AC | 36 ms
52,352 KB |
testcase_06 | AC | 36 ms
52,352 KB |
testcase_07 | AC | 122 ms
78,796 KB |
testcase_08 | AC | 169 ms
81,020 KB |
testcase_09 | AC | 1,278 ms
172,352 KB |
testcase_10 | AC | 173 ms
81,024 KB |
testcase_11 | AC | 1,039 ms
141,408 KB |
testcase_12 | AC | 361 ms
91,772 KB |
testcase_13 | AC | 600 ms
107,820 KB |
testcase_14 | AC | 83 ms
76,604 KB |
testcase_15 | AC | 178 ms
81,792 KB |
testcase_16 | AC | 274 ms
80,372 KB |
testcase_17 | AC | 100 ms
77,672 KB |
testcase_18 | AC | 97 ms
77,404 KB |
testcase_19 | AC | 665 ms
99,900 KB |
testcase_20 | AC | 86 ms
76,328 KB |
testcase_21 | AC | 1,240 ms
129,660 KB |
testcase_22 | AC | 34 ms
52,352 KB |
testcase_23 | AC | 36 ms
52,864 KB |
testcase_24 | AC | 35 ms
52,352 KB |
testcase_25 | AC | 37 ms
52,480 KB |
testcase_26 | AC | 37 ms
52,096 KB |
testcase_27 | AC | 37 ms
52,556 KB |
testcase_28 | AC | 96 ms
77,112 KB |
testcase_29 | AC | 310 ms
92,284 KB |
testcase_30 | AC | 57 ms
66,448 KB |
testcase_31 | AC | 119 ms
77,204 KB |
testcase_32 | AC | 38 ms
52,992 KB |
testcase_33 | AC | 606 ms
118,956 KB |
testcase_34 | AC | 336 ms
89,364 KB |
testcase_35 | AC | 187 ms
78,240 KB |
testcase_36 | AC | 158 ms
77,388 KB |
testcase_37 | AC | 127 ms
77,056 KB |
testcase_38 | AC | 228 ms
79,644 KB |
testcase_39 | AC | 175 ms
77,564 KB |
testcase_40 | AC | 40 ms
53,504 KB |
testcase_41 | AC | 38 ms
53,248 KB |
testcase_42 | AC | 36 ms
52,352 KB |
testcase_43 | AC | 316 ms
92,512 KB |
testcase_44 | AC | 226 ms
82,772 KB |
testcase_45 | AC | 1,300 ms
200,304 KB |
testcase_46 | AC | 126 ms
77,548 KB |
testcase_47 | AC | 363 ms
99,712 KB |
testcase_48 | AC | 860 ms
120,760 KB |
testcase_49 | AC | 139 ms
77,688 KB |
testcase_50 | AC | 39 ms
53,632 KB |
testcase_51 | AC | 36 ms
52,736 KB |
testcase_52 | AC | 273 ms
82,344 KB |
testcase_53 | AC | 187 ms
78,572 KB |
testcase_54 | AC | 888 ms
120,132 KB |
testcase_55 | AC | 897 ms
120,568 KB |
testcase_56 | AC | 871 ms
119,868 KB |
testcase_57 | AC | 1,295 ms
178,820 KB |
testcase_58 | AC | 1,315 ms
179,284 KB |
testcase_59 | AC | 1,317 ms
180,504 KB |
ソースコード
class Dijkstra(): class Edge(): def __init__(self, _to, _cost): self.to = _to self.cost = _cost def __init__(self, V): self.G = [[] for i in range(V)] self._E = 0 self._V = V @property def E(self): return self._E @property def V(self): return self._V def add(self, _from, _to, _cost): self.G[_from].append(self.Edge(_to, _cost)) self._E += 1 def shortest_path(self, s): import heapq que = [] d = [10**15] * self.V d[s] = 0 heapq.heappush(que, (0, s)) while len(que) != 0: cost, v = heapq.heappop(que) if d[v] < cost: continue for i in range(len(self.G[v])): e = self.G[v][i] if d[e.to] > d[v] + e.cost: d[e.to] = d[v] + e.cost heapq.heappush(que, (d[e.to], e.to)) return d T = int(input()) N,M = map(int,input().split()) edge = [tuple(map(int,input().split())) for i in range(M)] res = 10**15 for i in range(M): tmp = Dijkstra(N) for j in range(M): u,v,w = edge[j] if i!=j: tmp.add(u-1,v-1,w) if not T: tmp.add(v-1,u-1,w) u,v,w = edge[i] d = tmp.shortest_path(v-1)[u-1] if d!=10**15: res = min(res,d+w) if res!=10**15: print(res) else: print(-1)