結果

問題 No.307 最近色塗る問題多くない?
ユーザー 👑 kmjpkmjp
提出日時 2015-11-27 23:01:51
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,232 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 162,080 KB
実行使用メモリ 783,256 KB
最終ジャッジ日時 2023-10-12 00:25:53
合計ジャッジ時間 13,848 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
8,004 KB
testcase_01 AC 8 ms
7,816 KB
testcase_02 AC 8 ms
8,000 KB
testcase_03 AC 7 ms
8,008 KB
testcase_04 AC 8 ms
7,936 KB
testcase_05 AC 7 ms
8,116 KB
testcase_06 AC 7 ms
7,924 KB
testcase_07 AC 12 ms
8,384 KB
testcase_08 AC 38 ms
10,148 KB
testcase_09 AC 20 ms
8,836 KB
testcase_10 AC 24 ms
8,968 KB
testcase_11 AC 113 ms
13,492 KB
testcase_12 AC 7 ms
7,812 KB
testcase_13 AC 17 ms
8,000 KB
testcase_14 AC 9 ms
7,820 KB
testcase_15 AC 11 ms
8,312 KB
testcase_16 AC 9 ms
7,932 KB
testcase_17 AC 20 ms
8,972 KB
testcase_18 AC 24 ms
9,312 KB
testcase_19 AC 26 ms
9,492 KB
testcase_20 AC 8 ms
8,000 KB
testcase_21 AC 23 ms
9,548 KB
testcase_22 AC 26 ms
9,572 KB
testcase_23 AC 22 ms
9,364 KB
testcase_24 AC 22 ms
9,548 KB
testcase_25 AC 34 ms
9,452 KB
testcase_26 AC 34 ms
9,304 KB
testcase_27 TLE -
testcase_28 MLE -
testcase_29 AC 15 ms
7,984 KB
testcase_30 AC 34 ms
9,676 KB
testcase_31 MLE -
testcase_32 AC 30 ms
9,492 KB
testcase_33 AC 531 ms
10,208 KB
testcase_34 AC 34 ms
10,424 KB
testcase_35 AC 544 ms
10,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#undef _P
#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 ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

template<int um> class UF {
	public:
	vector<int> par,rank;
	UF() {rank=vector<int>(um,0); for(int i=0;i<um;i++) par.push_back(i);}
	int operator[](int x) {return (par[x]==x)?(x):(par[x] = operator[](par[x]));}
	int operator()(int x,int y) {
		if((x=operator[](x))==(y=operator[](y))) return x;
		if(rank[x]>rank[y]) return par[x]=y;
		rank[x]+=rank[x]==rank[y]; return par[y]=x;
	}
};

UF<500000> uf;

int H,W,Q;
int A[201*201];
vector<int> S[201*201];
int id(int y,int x){ return y*W+x;}



void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>H>>W;
	FOR(y,H) FOR(x,W) {
		cin>>A[id(y,x)];
	}
	FOR(y,H) FOR(x,W) {
		if(y) {
			if(A[id(y,x)]==A[id(y-1,x)]) uf(id(y,x),id(y-1,x));
			else S[id(y,x)].push_back(id(y-1,x));
		}
		if(y<H-1) {
			if(A[id(y,x)]==A[id(y+1,x)]) uf(id(y,x),id(y+1,x));
			else S[id(y,x)].push_back(id(y+1,x));
		}
		if(x) {
			if(A[id(y,x)]==A[id(y,x-1)]) uf(id(y,x),id(y,x-1));
			else S[id(y,x)].push_back(id(y,x-1));
		}
		if(x<W-1) {
			if(A[id(y,x)]==A[id(y,x+1)]) uf(id(y,x),id(y,x+1));
			else S[id(y,x)].push_back(id(y,x+1));
		}
	}
	
	FOR(x,H*W) if(uf[x]!=x) FORR(r,S[x]) S[uf[x]].push_back(r);
	FOR(x,H*W) if(uf[x]==x) {
		sort(ALL(S[x]));
		S[x].erase(unique(ALL(S[x])),S[x].end());
	}
	cin>>Q;
	while(Q--) {
		cin>>y>>x>>k;
		x=uf[id(y-1,x-1)];
		if(A[x]==k) continue;
		vector<int> NEW;
		FORR(r,S[x]) {
			FORR(r2,S[uf[r]]) if(uf[r2]!=uf[x]) NEW.push_back(r2);
			uf(x,r);
		}
		A[uf[x]]=k;
		sort(ALL(NEW));
		NEW.erase(unique(ALL(NEW)),NEW.end());
		S[uf[x]]=NEW;
	}
	FOR(y,H) {
		FOR(x,W) _P("%d%c",A[uf[id(y,x)]],(x==W-1)?'\n':' ');
	}
	
	
}


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