結果

問題 No.1324 Approximate the Matrix
ユーザー ああいいああいい
提出日時 2022-04-14 11:02:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,926 ms / 2,000 ms
コード長 2,760 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 87,012 KB
実行使用メモリ 90,560 KB
最終ジャッジ日時 2023-08-25 19:57:59
合計ジャッジ時間 17,072 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,088 KB
testcase_01 AC 76 ms
71,016 KB
testcase_02 AC 75 ms
70,876 KB
testcase_03 AC 576 ms
84,792 KB
testcase_04 AC 555 ms
84,656 KB
testcase_05 AC 592 ms
85,020 KB
testcase_06 AC 576 ms
84,976 KB
testcase_07 AC 645 ms
84,624 KB
testcase_08 AC 154 ms
78,284 KB
testcase_09 AC 168 ms
78,636 KB
testcase_10 AC 185 ms
78,948 KB
testcase_11 AC 233 ms
80,684 KB
testcase_12 AC 176 ms
79,108 KB
testcase_13 AC 154 ms
78,376 KB
testcase_14 AC 234 ms
80,772 KB
testcase_15 AC 175 ms
78,640 KB
testcase_16 AC 135 ms
77,124 KB
testcase_17 AC 253 ms
80,492 KB
testcase_18 AC 178 ms
78,320 KB
testcase_19 AC 183 ms
78,636 KB
testcase_20 AC 153 ms
78,408 KB
testcase_21 AC 157 ms
77,740 KB
testcase_22 AC 92 ms
76,084 KB
testcase_23 AC 230 ms
79,472 KB
testcase_24 AC 310 ms
81,676 KB
testcase_25 AC 254 ms
81,152 KB
testcase_26 AC 233 ms
80,348 KB
testcase_27 AC 194 ms
78,992 KB
testcase_28 AC 74 ms
70,664 KB
testcase_29 AC 85 ms
74,964 KB
testcase_30 AC 83 ms
75,140 KB
testcase_31 AC 95 ms
75,720 KB
testcase_32 AC 75 ms
70,960 KB
testcase_33 AC 76 ms
71,024 KB
testcase_34 AC 74 ms
70,872 KB
testcase_35 AC 76 ms
70,960 KB
testcase_36 AC 75 ms
70,880 KB
testcase_37 AC 1,131 ms
90,420 KB
testcase_38 AC 1,097 ms
90,480 KB
testcase_39 AC 1,926 ms
90,164 KB
testcase_40 AC 1,093 ms
90,380 KB
testcase_41 AC 1,068 ms
90,560 KB
testcase_42 AC 93 ms
76,220 KB
testcase_43 AC 94 ms
75,888 KB
testcase_44 AC 91 ms
76,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#その2 最初はコストが全部正の場合に使えるダイクストラ
from heapq import heappush,heappop
class MinCostFlow:
    inf = 10 ** 10

    def __init__(self,N):
        self.N = N
        self.G = [[] for _ in range(N)]
        self.H = [0] * N
        self.edge = []

    def add_edge(self,fr,to,cap,cost):
        e = [to,cap,cost,None]
        r = e[3] = [fr,0,-cost,e]
        self.G[fr].append(e)
        self.G[to].append(r)
        self.edge.append(e)
    def get_edge(self,i):
        return self.edge[i]

    def flow(self,s,t,f):
        N = self.N
        G = self.G
        inf = MinCostFlow.inf

        res = 0
        H = self.H  #ポテンシャル、コストが最初は正なので、最初は0でいい
        prev_v = [0] * N
        prev_e = [None] * N

        d0 = [inf] * N
        dist = [inf] * N
        while f:
            dist[:] = d0
            dist[s] = 0
            q = [(0,s)]
            while q:
                c,v = heappop(q)
                if dist[v] < c:continue
                if v == t:break
                #r0 = dist[v] + H[v]
                for e in G[v]:
                    w,cap,cost,_ = e
                    cost = cost - H[w] + H[v]
                    if cap > 0 and dist[v] + cost < dist[w]:
                        dist[w] = dist[v] + cost
                        prev_v[w] = v
                        prev_e[w] = e
                        heappush(q,(dist[w],w))
            if dist[t] == inf:
                return None
            """
            for i in range(N):
                H[i] += dist[i]
            """
            for i in range(N):
                if dist[i] < inf:
                    H[i] += dist[i] - dist[t]
            d = f
            v = t
            while v != s:
                d = min(d,prev_e[v][1])
                v = prev_v[v]
            f -= d
            res += d * -H[s]
            v = t
            while v != s:
                e = prev_e[v]
                e[1] -= d
                e[3][1] += d
                v = prev_v[v]
        return res
import sys
rr = sys.stdin
N,K = map(int,rr.readline().split())
A = list(map(int,rr.readline().split()))
B = list(map(int,rr.readline().split()))
P = [list(map(int,rr.readline().split())) for _ in range(N)]

mincost = MinCostFlow(N + N + 2)
s = N + N
t = N + N + 1
inf = 400
for i in range(N):
    for j in range(N):
        v = N + j
        for k in range(1,min(A[i],B[j])+1):
            mincost.add_edge(i,v,1,inf + (2 * (k - 1) + 1 - 2 * P[i][j]))
for i in range(N):
    mincost.add_edge(s,i,A[i],0)
for j in range(N):
    mincost.add_edge(j + N,t,B[j],0)
ans = 0
for i in range(N):
    for j in range(N):
        ans += P[i][j] ** 2
ans += mincost.flow(s,t,K) - inf * K
print(ans)
0