結果

問題 No.1479 Matrix Eraser
ユーザー とりゐとりゐ
提出日時 2021-11-11 19:35:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 754 ms / 3,000 ms
コード長 2,213 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 138,304 KB
最終ジャッジ日時 2024-05-02 21:03:59
合計ジャッジ時間 19,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,400 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 AC 43 ms
55,168 KB
testcase_03 AC 43 ms
54,912 KB
testcase_04 AC 42 ms
54,912 KB
testcase_05 AC 42 ms
54,656 KB
testcase_06 AC 42 ms
54,784 KB
testcase_07 AC 264 ms
84,224 KB
testcase_08 AC 280 ms
89,216 KB
testcase_09 AC 395 ms
99,312 KB
testcase_10 AC 560 ms
111,472 KB
testcase_11 AC 443 ms
100,004 KB
testcase_12 AC 260 ms
85,212 KB
testcase_13 AC 277 ms
88,176 KB
testcase_14 AC 256 ms
85,684 KB
testcase_15 AC 158 ms
79,872 KB
testcase_16 AC 315 ms
86,916 KB
testcase_17 AC 654 ms
116,344 KB
testcase_18 AC 683 ms
117,540 KB
testcase_19 AC 682 ms
117,424 KB
testcase_20 AC 652 ms
116,476 KB
testcase_21 AC 648 ms
116,092 KB
testcase_22 AC 670 ms
116,528 KB
testcase_23 AC 688 ms
116,200 KB
testcase_24 AC 657 ms
116,368 KB
testcase_25 AC 659 ms
116,340 KB
testcase_26 AC 646 ms
116,228 KB
testcase_27 AC 721 ms
130,788 KB
testcase_28 AC 682 ms
129,324 KB
testcase_29 AC 714 ms
130,504 KB
testcase_30 AC 702 ms
131,456 KB
testcase_31 AC 754 ms
133,140 KB
testcase_32 AC 328 ms
137,876 KB
testcase_33 AC 320 ms
138,304 KB
testcase_34 AC 310 ms
138,184 KB
testcase_35 AC 331 ms
138,236 KB
testcase_36 AC 334 ms
138,180 KB
testcase_37 AC 77 ms
77,056 KB
testcase_38 AC 410 ms
108,376 KB
testcase_39 AC 628 ms
126,620 KB
testcase_40 AC 43 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
 
 
class Dinic:
    def __init__(self, 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):
        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
        links_v = self.links[v]
        for i in range(self.progress[v], len(links_v)):
            self.progress[v] = i
            cap, to, rev = link = 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
            link[0] -= d
            self.links[to][rev][0] += d
            return d
        return 0
 
    def max_flow(self, s, t):
        flow = 0
        while True:
            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'))

from collections import defaultdict
h,w=map(int,input().split())
d=defaultdict(list)
for i in range(h):
  a=list(map(int,input().split()))
  for j in range(w):
    if a[j]!=0:
      d[a[j]].append((i,h+j))
ans=0
for i in d:
  x=set()
  y=set()
  for xi,yi in d[i]:
    x.add(xi)
    y.add(yi)
  X,Y=len(x),len(y)
  mf=Dinic(X+Y+2)
  s,t=0,X+Y+1
  id=defaultdict(int)
  tmp=1
  for j in x:
    id[j]=tmp
    mf.add_link(s,tmp,1)
    tmp+=1
  for j in y:
    id[j]=tmp
    mf.add_link(tmp,t,1)
    tmp+=1
  for xi,yi in d[i]:
    mf.add_link(id[xi],id[yi],1)
  ans+=mf.max_flow(s,t)
print(ans)
0