結果

問題 No.1479 Matrix Eraser
ユーザー norikamenorikame
提出日時 2021-04-17 11:14:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 475 ms / 3,000 ms
コード長 1,319 bytes
コンパイル時間 4,616 ms
コンパイル使用メモリ 281,276 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-07-03 17:58:14
合計ジャッジ時間 14,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 44 ms
6,940 KB
testcase_08 AC 80 ms
8,704 KB
testcase_09 AC 180 ms
14,080 KB
testcase_10 AC 368 ms
22,016 KB
testcase_11 AC 227 ms
16,000 KB
testcase_12 AC 58 ms
7,424 KB
testcase_13 AC 78 ms
8,832 KB
testcase_14 AC 60 ms
7,552 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 70 ms
8,064 KB
testcase_17 AC 458 ms
25,088 KB
testcase_18 AC 466 ms
25,088 KB
testcase_19 AC 474 ms
25,216 KB
testcase_20 AC 466 ms
25,088 KB
testcase_21 AC 475 ms
25,088 KB
testcase_22 AC 454 ms
25,088 KB
testcase_23 AC 455 ms
25,088 KB
testcase_24 AC 446 ms
25,216 KB
testcase_25 AC 462 ms
25,088 KB
testcase_26 AC 455 ms
25,088 KB
testcase_27 AC 182 ms
6,944 KB
testcase_28 AC 181 ms
6,940 KB
testcase_29 AC 183 ms
6,940 KB
testcase_30 AC 182 ms
6,944 KB
testcase_31 AC 183 ms
6,940 KB
testcase_32 AC 90 ms
11,732 KB
testcase_33 AC 89 ms
11,744 KB
testcase_34 AC 89 ms
11,796 KB
testcase_35 AC 91 ms
11,732 KB
testcase_36 AC 91 ms
11,736 KB
testcase_37 AC 38 ms
6,940 KB
testcase_38 AC 223 ms
6,944 KB
testcase_39 AC 383 ms
30,848 KB
testcase_40 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 解説を見て実装

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

int main() {
	int h, w;
	cin >> h >> w;
	map<int, vector<pair<int, int>>> aval;
	rep(i, h) rep(j, w) {
		int ai;
		cin >> ai;
		if (ai == 0) continue;
		aval[ai].emplace_back(i, j);
	}
	int res = 0;
	for (auto p : aval) {
		map<int, int> hid, wid;
		rep(i, (int)(p.second.size())) {
			hid[p.second[i].first] = -1;
			wid[p.second[i].second] = -1;
		}
		auto hitr=hid.begin(), witr=wid.begin();
		for (int j1=0; hitr!=hid.end(); ++hitr,++j1) hitr->second = j1;
		for (int j2=0; witr!=wid.end(); ++witr,++j2) witr->second = j2;
		int n = (int)(hid.size()) + (int)(wid.size());
		mf_graph<int> g(n+2);
		for (auto p2 : hid) g.add_edge(n, p2.second, 1);
		for (auto p2 : wid) g.add_edge((int)(hid.size())+p2.second, n+1, 1);
		rep(i, (int)(p.second.size())) g.add_edge(hid[p.second[i].first], (int)(hid.size())+wid[p.second[i].second], 1);
		res += g.flow(n, n+1);
	}
	cout << res << endl;
	return 0;
}

0