結果

問題 No.1479 Matrix Eraser
ユーザー AEnAEn
提出日時 2023-06-02 01:08:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,744 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 160,824 KB
最終ジャッジ日時 2024-06-08 21:49:50
合計ジャッジ時間 23,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 50 ms
55,168 KB
testcase_03 AC 48 ms
55,040 KB
testcase_04 AC 47 ms
55,168 KB
testcase_05 AC 47 ms
54,400 KB
testcase_06 AC 47 ms
54,784 KB
testcase_07 AC 295 ms
85,248 KB
testcase_08 AC 344 ms
94,080 KB
testcase_09 AC 499 ms
103,808 KB
testcase_10 AC 796 ms
126,988 KB
testcase_11 AC 560 ms
109,568 KB
testcase_12 AC 296 ms
87,168 KB
testcase_13 AC 366 ms
94,080 KB
testcase_14 AC 296 ms
87,808 KB
testcase_15 AC 165 ms
79,744 KB
testcase_16 AC 308 ms
89,344 KB
testcase_17 AC 903 ms
131,812 KB
testcase_18 AC 931 ms
131,548 KB
testcase_19 AC 935 ms
132,320 KB
testcase_20 AC 927 ms
131,148 KB
testcase_21 AC 925 ms
130,928 KB
testcase_22 AC 965 ms
131,296 KB
testcase_23 AC 944 ms
132,072 KB
testcase_24 AC 949 ms
131,052 KB
testcase_25 AC 979 ms
132,188 KB
testcase_26 AC 959 ms
131,168 KB
testcase_27 AC 845 ms
148,096 KB
testcase_28 AC 780 ms
145,536 KB
testcase_29 AC 803 ms
146,176 KB
testcase_30 AC 800 ms
145,152 KB
testcase_31 AC 834 ms
147,328 KB
testcase_32 AC 410 ms
157,056 KB
testcase_33 AC 402 ms
157,184 KB
testcase_34 AC 386 ms
156,800 KB
testcase_35 AC 400 ms
157,312 KB
testcase_36 AC 399 ms
157,184 KB
testcase_37 WA -
testcase_38 AC 611 ms
135,936 KB
testcase_39 AC 891 ms
141,180 KB
testcase_40 AC 43 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque
import sys
sys.setrecursionlimit(10**7)
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):
        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