結果

問題 No.2604 Initial Motion
ユーザー miya145592miya145592
提出日時 2024-01-13 01:34:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,030 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 83,860 KB
最終ジャッジ日時 2024-09-28 01:01:14
合計ジャッジ時間 15,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 46 ms
60,672 KB
testcase_03 AC 200 ms
76,544 KB
testcase_04 AC 197 ms
76,416 KB
testcase_05 AC 189 ms
76,544 KB
testcase_06 AC 183 ms
76,288 KB
testcase_07 AC 189 ms
76,288 KB
testcase_08 AC 206 ms
76,416 KB
testcase_09 AC 275 ms
76,672 KB
testcase_10 AC 195 ms
76,416 KB
testcase_11 AC 214 ms
76,288 KB
testcase_12 AC 257 ms
76,416 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,326 ms
81,468 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://tjkendev.github.io/procon-library/python/min_cost_flow/primal-dual.html
# 最小費用流(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()))
MCF = MinCostFlow(N+2)
INF = 10**16
for _ in range(M):
    u, v, d = map(int, input().split())
    MCF.addEdge(u, v, INF, d)
    MCF.addEdge(v, u, INF, d)
for a in A:
    MCF.addEdge(0, a, 1, 0)
for i in range(N):
    MCF.addEdge(i+1, N+1, B[i], 0)
ans = MCF.minCostFlow(0, N+1, K)
print(ans)
0