結果

問題 No.1479 Matrix Eraser
ユーザー 沙耶花沙耶花
提出日時 2021-04-16 20:35:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 3,000 ms
コード長 1,288 bytes
コンパイル時間 4,131 ms
コンパイル使用メモリ 274,888 KB
実行使用メモリ 23,780 KB
最終ジャッジ日時 2024-07-02 22:59:54
合計ジャッジ時間 12,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
15,052 KB
testcase_01 AC 59 ms
14,908 KB
testcase_02 AC 58 ms
15,036 KB
testcase_03 AC 59 ms
15,028 KB
testcase_04 AC 58 ms
14,972 KB
testcase_05 AC 58 ms
15,116 KB
testcase_06 AC 58 ms
15,088 KB
testcase_07 AC 103 ms
16,164 KB
testcase_08 AC 129 ms
16,836 KB
testcase_09 AC 183 ms
18,504 KB
testcase_10 AC 267 ms
21,192 KB
testcase_11 AC 195 ms
19,068 KB
testcase_12 AC 95 ms
16,312 KB
testcase_13 AC 108 ms
16,612 KB
testcase_14 AC 98 ms
16,356 KB
testcase_15 AC 70 ms
15,356 KB
testcase_16 AC 109 ms
16,564 KB
testcase_17 AC 325 ms
22,288 KB
testcase_18 AC 328 ms
22,396 KB
testcase_19 AC 307 ms
22,388 KB
testcase_20 AC 308 ms
22,408 KB
testcase_21 AC 319 ms
22,176 KB
testcase_22 AC 310 ms
22,356 KB
testcase_23 AC 326 ms
22,376 KB
testcase_24 AC 328 ms
22,308 KB
testcase_25 AC 319 ms
22,180 KB
testcase_26 AC 321 ms
22,332 KB
testcase_27 AC 169 ms
19,208 KB
testcase_28 AC 167 ms
19,172 KB
testcase_29 AC 164 ms
19,136 KB
testcase_30 AC 165 ms
19,160 KB
testcase_31 AC 168 ms
19,192 KB
testcase_32 AC 114 ms
23,368 KB
testcase_33 AC 113 ms
23,584 KB
testcase_34 AC 111 ms
23,556 KB
testcase_35 AC 112 ms
23,552 KB
testcase_36 AC 111 ms
23,648 KB
testcase_37 AC 96 ms
18,300 KB
testcase_38 AC 195 ms
18,196 KB
testcase_39 AC 301 ms
23,780 KB
testcase_40 AC 59 ms
15,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int H,W;
	cin>>H>>W;
	
	vector<vector<int>> A(H,vector<int>(W));
	
	vector<vector<pair<int,int>>> N(500001);
	
	rep(i,H){
		rep(j,W){
			cin>>A[i][j];
			
			N[A[i][j]].emplace_back(i,j);
			
		}
	}
	
	int ans = 0;
	vector<int> h(H,-1);
	vector<int> w(W,-1);
	rep(i,N.size()){
		if(i==0)continue;
		vector<int> y,x;
		rep(j,N[i].size()){
			int yy = N[i][j].first,xx = N[i][j].second;
			if(h[yy]==-1){
				h[yy] = y.size();
				y.push_back(yy);
			}
			if(w[xx]==-1){
				w[xx] = x.size();
				x.push_back(xx);
			}
		}
		sort(y.begin(),y.end());
		sort(x.begin(),x.end());
		
		mf_graph<int> G(y.size()+x.size()+2);
		int S = y.size()+x.size();
		int T = S+1;
		
		rep(j,N[i].size()){
			int yy = N[i][j].first,xx = N[i][j].second;
			G.add_edge(h[yy],y.size() + w[xx],1);
		}
		
		rep(j,y.size()){
			G.add_edge(S,j,1);
		}
		rep(j,x.size()){
			G.add_edge(y.size()+j,T,1);
		}
		
		ans += G.flow(S,T);
		rep(j,N[i].size()){
			int yy = N[i][j].first,xx = N[i][j].second;
			h[yy] = -1;
			w[xx] = -1;
		}
		
	}
	
	
	
	
	cout<<ans<<endl;
	
    return 0;
}
0