結果
問題 | No.1479 Matrix Eraser |
ユーザー | 小野寺健 |
提出日時 | 2021-04-28 12:56:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,383 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 72,068 KB |
最終ジャッジ日時 | 2024-07-07 10:30:35 |
合計ジャッジ時間 | 54,017 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
11,008 KB |
testcase_01 | AC | 25 ms
10,880 KB |
testcase_02 | AC | 25 ms
11,008 KB |
testcase_03 | AC | 24 ms
10,880 KB |
testcase_04 | WA | - |
testcase_05 | AC | 24 ms
10,752 KB |
testcase_06 | AC | 24 ms
11,008 KB |
testcase_07 | AC | 170 ms
17,592 KB |
testcase_08 | AC | 275 ms
22,976 KB |
testcase_09 | AC | 550 ms
36,124 KB |
testcase_10 | AC | 1,034 ms
52,700 KB |
testcase_11 | AC | 633 ms
39,636 KB |
testcase_12 | AC | 206 ms
19,552 KB |
testcase_13 | AC | 275 ms
22,972 KB |
testcase_14 | AC | 215 ms
20,056 KB |
testcase_15 | AC | 70 ms
12,800 KB |
testcase_16 | AC | 237 ms
20,304 KB |
testcase_17 | AC | 1,237 ms
65,500 KB |
testcase_18 | AC | 1,239 ms
65,124 KB |
testcase_19 | AC | 1,233 ms
65,348 KB |
testcase_20 | AC | 1,229 ms
65,212 KB |
testcase_21 | AC | 1,218 ms
65,236 KB |
testcase_22 | AC | 1,233 ms
65,256 KB |
testcase_23 | AC | 1,253 ms
65,244 KB |
testcase_24 | AC | 1,226 ms
65,248 KB |
testcase_25 | AC | 1,268 ms
65,472 KB |
testcase_26 | AC | 1,246 ms
65,336 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | AC | 90 ms
10,752 KB |
testcase_38 | AC | 2,352 ms
33,024 KB |
testcase_39 | AC | 1,340 ms
72,068 KB |
testcase_40 | AC | 25 ms
10,752 KB |
ソースコード
from collections import defaultdict def dfs(v, visited): global edges, matched for u in edges[v]: if u in visited: continue visited.add(u) if matched[u] == -1 or dfs(matched[u], visited) >= 0: matched[u] = v return u return -1 def mpc(xn, yn): global matched, edges matched = [-1] * yn left = [True] * xn right = [False] * yn ledges = [] redges = [-1] * yn for v in range(xn): u = dfs(v, set()) if u >= 0: redges[u] = v else: left[v] = False ledges.append(v) for v in ledges: for u in edges[v]: right[u] = True if redges[u] >= 0: left[redges[u]] = False return sum(left+right) if __name__ == '__main__': H, W = map(int, input().split()) S = defaultdict(list) for i in range(H): for j, a in enumerate(list(map(int, input().split()))): if a > 0: S[a].append((i, j)) cnt = 0 for a, l in S.items(): h , w = set(), set() for i, j in l: h.add(i) w.add(j) h, w = list(h), list(w) edges = [set() for _ in range(len(h))] for i, j in l: edges[h.index(i)].add(w.index(j)) cnt += mpc(len(h), len(w)) print(cnt)