結果
問題 | No.1479 Matrix Eraser |
ユーザー | ntuda |
提出日時 | 2021-12-18 22:24:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,749 bytes |
コンパイル時間 | 306 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 264,180 KB |
最終ジャッジ日時 | 2024-09-15 14:03:52 |
合計ジャッジ時間 | 9,332 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
58,112 KB |
testcase_01 | AC | 39 ms
53,248 KB |
testcase_02 | AC | 39 ms
52,992 KB |
testcase_03 | AC | 39 ms
52,736 KB |
testcase_04 | AC | 40 ms
52,864 KB |
testcase_05 | AC | 40 ms
53,504 KB |
testcase_06 | AC | 40 ms
52,864 KB |
testcase_07 | AC | 2,900 ms
200,184 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
class FordFulkerson: def __init__(self, N): self.N = N self.G = [[] for i in range(N)] def add_edge(self, fr, to, cap): forward = [to, cap, None] forward[2] = backward = [fr, 0, forward] self.G[fr].append(forward) self.G[to].append(backward) def add_multi_edge(self, v1, v2, cap1, cap2): edge1 = [v2, cap1, None] edge1[2] = edge2 = [v1, cap2, edge1] self.G[v1].append(edge1) self.G[v2].append(edge2) def dfs(self, v, t, f): if v == t: return f used = self.used used[v] = 1 for e in self.G[v]: w, cap, rev = e if cap and not used[w]: d = self.dfs(w, t, min(f, cap)) if d: e[1] -= d rev[1] += d return d return 0 def flow(self, s, t): flow = 0 f = INF = 10**9 + 7 N = self.N while f: self.used = [0]*N f = self.dfs(s, t, INF) flow += f return flow H,W = map(int,input().split()) A = [list(map(int,input().split())) for _ in range(H)] dic = {} AF = set() #存在する値のセット for i in range(H): for j in range(W): a = A[i][j] if a in dic: dic[a].append((i,j)) else: dic[a] = [(i,j)] AF.add(A[i][j]) if 0 in AF: AF.remove(0) AF = sorted(AF,reverse = True) ans = 0 for a in AF: N = H + W + 2 ff = FordFulkerson(N) for i in range(H): ff.add_edge(0,i+1,1) for i in range(W): ff.add_edge(H + i + 1,N-1,1) for i,j in dic[a]: ff.add_edge(i+1,H + j + 1,1) ans += ff.flow(0, N-1) print(ans)