結果

問題 No.1479 Matrix Eraser
ユーザー AEnAEn
提出日時 2023-06-02 01:10:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,109 ms / 3,000 ms
コード長 2,771 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 157,568 KB
最終ジャッジ日時 2024-06-08 21:50:17
合計ジャッジ時間 26,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,656 KB
testcase_01 AC 45 ms
54,912 KB
testcase_02 AC 43 ms
55,296 KB
testcase_03 AC 45 ms
54,912 KB
testcase_04 AC 46 ms
55,680 KB
testcase_05 AC 45 ms
55,040 KB
testcase_06 AC 43 ms
55,116 KB
testcase_07 AC 292 ms
85,204 KB
testcase_08 AC 369 ms
94,112 KB
testcase_09 AC 576 ms
105,020 KB
testcase_10 AC 919 ms
127,640 KB
testcase_11 AC 663 ms
109,996 KB
testcase_12 AC 325 ms
87,580 KB
testcase_13 AC 393 ms
94,336 KB
testcase_14 AC 324 ms
88,028 KB
testcase_15 AC 166 ms
80,256 KB
testcase_16 AC 344 ms
89,756 KB
testcase_17 AC 1,054 ms
131,824 KB
testcase_18 AC 1,071 ms
132,924 KB
testcase_19 AC 1,072 ms
132,984 KB
testcase_20 AC 1,067 ms
132,220 KB
testcase_21 AC 1,109 ms
132,096 KB
testcase_22 AC 1,092 ms
132,596 KB
testcase_23 AC 1,056 ms
131,956 KB
testcase_24 AC 1,055 ms
131,712 KB
testcase_25 AC 1,073 ms
132,052 KB
testcase_26 AC 1,091 ms
132,096 KB
testcase_27 AC 911 ms
148,208 KB
testcase_28 AC 863 ms
146,156 KB
testcase_29 AC 860 ms
146,452 KB
testcase_30 AC 864 ms
144,780 KB
testcase_31 AC 916 ms
147,300 KB
testcase_32 AC 436 ms
157,440 KB
testcase_33 AC 438 ms
156,940 KB
testcase_34 AC 427 ms
157,484 KB
testcase_35 AC 431 ms
157,440 KB
testcase_36 AC 437 ms
157,568 KB
testcase_37 AC 78 ms
77,920 KB
testcase_38 AC 702 ms
135,080 KB
testcase_39 AC 1,012 ms
141,944 KB
testcase_40 AC 43 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque
import sys
sys.setrecursionlimit(10**8)
import pypyjit
pypyjit.set_param("max_unroll_recursion=-1")
 
class Dinic:
    def __init__(self, n):
        """n点ネットワークの構築"""
        self.n = n
        self.links = [[] for _ in range(n)]
        self.depth = None
        self.progress = None
 
    def add_link(self, _from, to, cap):
        """フローが流れてない状態での辺の追加"""
        self.links[_from].append([cap, to, len(self.links[to])])
        self.links[to].append([0, _from, len(self.links[_from]) - 1])
 
    def bfs(self, s):
        """sからtへの残余ネットワーク上での最短距離"""
        depth = [-1] * self.n
        depth[s] = 0
        q = deque([s])
        while q:
            v = q.popleft()
            for cap, to, rev in self.links[v]:
                if cap > 0 and depth[to] < 0:
                    depth[to] = depth[v] + 1
                    q.append(to)
        self.depth = depth
 
    def dfs(self, v, t, flow):
        """増大道の探索"""
        if v == t:
            return flow
        for i in range(self.progress[v], len(self.links[v])):
            self.progress[v] = i
            cap, to, rev = self.links[v][i]
            if cap == 0 or self.depth[v] >= self.depth[to]:
                continue
            d = self.dfs(to, t, min(flow, cap))
            if d == 0:
                continue
            # 残余ネットワークの更新
            self.links[v][i][0] -= d
            self.links[to][rev][0] += d
            return d
        return 0
 
    def max_flow(self, s, t):
        """最大フローを求める"""
        flow = 0
        while True:
            # tに到達できるか
            self.bfs(s)
            if self.depth[t] < 0:
                return flow
            self.progress = [0] * self.n
            current_flow = self.dfs(s, t, float('inf'))
            while current_flow > 0:
                flow += current_flow
                current_flow = self.dfs(s, t, float('inf'))

H,W = map(int, input().split())
A = [list(map(int,input().split())) for _ in range(H)]

d = defaultdict(list)
for i in range(H):
    for j in range(W):
        if A[i][j]!=0:
            d[A[i][j]].append([i,j])

res = 0
for num in d.keys():
    X = set()
    Y = set()
    for x,y in d[num]:
        X.add(x);Y.add(y)
    X = {num:i for i,num in enumerate(sorted(list(X)))}
    Y = {num:i+len(X) for i,num in enumerate(sorted(list(Y)))}
    mf = Dinic(len(X)+len(Y)+2)
    for x in X:
        mf.add_link(len(X)+len(Y),X[x],1)
    for y in Y:
        mf.add_link(Y[y],len(X)+len(Y)+1,1)
    for x,y in d[num]:
        mf.add_link(X[x],Y[y],1)
    res += mf.max_flow(len(X)+len(Y),len(X)+len(Y)+1)
print(res)
0