結果
問題 | No.2604 Initial Motion |
ユーザー | nikoro256 |
提出日時 | 2024-01-12 22:55:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,978 bytes |
コンパイル時間 | 336 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 89,028 KB |
最終ジャッジ日時 | 2024-09-27 23:42:42 |
合計ジャッジ時間 | 14,908 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
60,028 KB |
testcase_01 | AC | 39 ms
52,012 KB |
testcase_02 | AC | 48 ms
61,312 KB |
testcase_03 | AC | 219 ms
76,164 KB |
testcase_04 | AC | 225 ms
76,292 KB |
testcase_05 | AC | 218 ms
76,408 KB |
testcase_06 | AC | 221 ms
75,944 KB |
testcase_07 | AC | 204 ms
76,224 KB |
testcase_08 | AC | 213 ms
76,320 KB |
testcase_09 | AC | 312 ms
76,288 KB |
testcase_10 | AC | 207 ms
76,544 KB |
testcase_11 | AC | 224 ms
76,288 KB |
testcase_12 | AC | 209 ms
76,160 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
# 最小費用流(minimum cost flow) class MinCostFlow: def __init__(self, n): self.n = n self.G = [[] for i in range(n)] def addEdge(self, f, t, cap, cost): # [to, cap, cost, rev] self.G[f].append([t, cap, cost, len(self.G[t])]) self.G[t].append([f, 0, -cost, len(self.G[f])-1]) def minCostFlow(self, s, t, f): n = self.n G = self.G prevv = [0]*n; preve = [0]*n INF = 10**9+7 res = 0 while f: dist = [INF]*n dist[s] = 0 update = 1 while update: update = 0 for v in range(n): if dist[v] == INF: continue gv = G[v] for i in range(len(gv)): to, cap, cost, rev = gv[i] if cap > 0 and dist[v] + cost < dist[to]: dist[to] = dist[v] + cost prevv[to] = v; preve[to] = i update = 1 if dist[t] == INF: return -1 d = f; v = t while v != s: d = min(d, G[prevv[v]][preve[v]][1]) v = prevv[v] f -= d res += d * dist[t] v = t while v != s: e = G[prevv[v]][preve[v]] e[1] -= d G[v][e[3]][1] += d v = prevv[v] return res import sys input=sys.stdin.readline K,N,M=map(int,input().split()) A=list(map(int,input().split())) B=list(map(int,input().split())) #初期化 mf=MinCostFlow(N+2) for i in range(K): mf.addEdge(0,A[i],1,0) for i in range(N): mf.addEdge(i+1,N+1,B[i],0) for i in range(M): u,v,d=map(int,input().split()) mf.addEdge(u,v,4000,d) mf.addEdge(v,u,4000,d) #flowを流す。返り値は(流れの量,費用)。O(F(N+M)log(N+M)) print(mf.minCostFlow(0,N+1,K))