結果

問題 No.1479 Matrix Eraser
ユーザー kmjpkmjp
提出日時 2021-04-16 22:14:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,030 bytes
コンパイル時間 2,679 ms
コンパイル使用メモリ 222,152 KB
実行使用メモリ 29,756 KB
最終ジャッジ日時 2024-07-03 02:07:59
合計ジャッジ時間 8,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
20,992 KB
testcase_01 AC 13 ms
20,992 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 13 ms
20,992 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
22,544 KB
testcase_08 AC 52 ms
23,256 KB
testcase_09 AC 101 ms
24,784 KB
testcase_10 AC 180 ms
27,264 KB
testcase_11 AC 116 ms
25,012 KB
testcase_12 AC 42 ms
22,272 KB
testcase_13 AC 54 ms
22,912 KB
testcase_14 AC 42 ms
22,336 KB
testcase_15 AC 18 ms
21,376 KB
testcase_16 AC 46 ms
22,748 KB
testcase_17 AC 225 ms
28,272 KB
testcase_18 AC 223 ms
28,288 KB
testcase_19 AC 223 ms
28,252 KB
testcase_20 AC 223 ms
28,208 KB
testcase_21 AC 225 ms
28,120 KB
testcase_22 AC 221 ms
28,272 KB
testcase_23 AC 222 ms
28,244 KB
testcase_24 AC 224 ms
28,372 KB
testcase_25 AC 222 ms
28,232 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 61 ms
24,212 KB
testcase_37 AC 27 ms
21,808 KB
testcase_38 AC 139 ms
24,000 KB
testcase_39 AC 133 ms
29,756 KB
testcase_40 AC 14 ms
20,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int H,W;
int A[505][505];

template<int um> class UF {
	public:
	vector<int> par,rank,cnt;
	UF() {par=rank=vector<int>(um,0); cnt=vector<int>(um,1); for(int i=0;i<um;i++) par[i]=i;}
	void reinit(int num=um) {int i; FOR(i,num) rank[i]=0,cnt[i]=1,par[i]=i;}
	int operator[](int x) {return (par[x]==x)?(x):(par[x] = operator[](par[x]));}
	int count(int x) { return cnt[operator[](x)];}
	int operator()(int x,int y) {
		if((x=operator[](x))==(y=operator[](y))) return x;
		cnt[y]=cnt[x]=cnt[x]+cnt[y];
		if(rank[x]>rank[y]) return par[x]=y;
		rank[x]+=rank[x]==rank[y]; return par[y]=x;
	}
};
UF<505050> uf;

vector<pair<int,int>> E[505050];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>H>>W;
	FOR(y,H) FOR(x,W) cin>>A[y][x];
	
	FOR(y,H) {
		map<int,int> M;
		FOR(x,W) if(A[y][x]) {
			if(M.count(A[y][x])) uf(M[A[y][x]],y*500+x);
			M[A[y][x]]=y*500+x;
		}
	}
	FOR(x,W) {
		map<int,int> M;
		FOR(y,H) if(A[y][x]) {
			if(M.count(A[y][x])) uf(M[A[y][x]],y*500+x);
			M[A[y][x]]=y*500+x;
		}
	}
	
	FOR(y,H) FOR(x,W) if(A[y][x]) E[uf[A[y][x]]].push_back({y,x});
	int ret=0;
	FOR(i,505040) if(E[i].size()) {
		set<int> R,C;
		FORR2(r,c,E[i]) R.insert(r),C.insert(c);
		ret+=min(R.size(),C.size());
	}
	
	cout<<ret<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0