結果

問題 No.307 最近色塗る問題多くない?
ユーザー tkzw_21tkzw_21
提出日時 2016-03-25 12:20:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,218 ms / 4,000 ms
コード長 977 bytes
コンパイル時間 1,269 ms
コンパイル使用メモリ 164,824 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-05-01 16:59:19
合計ジャッジ時間 9,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 28 ms
6,400 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 78 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 22 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 34 ms
5,888 KB
testcase_19 AC 29 ms
5,888 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 28 ms
5,376 KB
testcase_22 AC 23 ms
6,528 KB
testcase_23 AC 138 ms
6,528 KB
testcase_24 AC 59 ms
5,376 KB
testcase_25 AC 100 ms
6,400 KB
testcase_26 AC 173 ms
6,656 KB
testcase_27 AC 460 ms
5,376 KB
testcase_28 AC 449 ms
6,528 KB
testcase_29 AC 15 ms
5,376 KB
testcase_30 AC 1,218 ms
6,656 KB
testcase_31 AC 1,097 ms
5,376 KB
testcase_32 AC 1,088 ms
5,376 KB
testcase_33 AC 13 ms
5,376 KB
testcase_34 AC 1,089 ms
5,376 KB
testcase_35 AC 1,084 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int H,W;
vector<vector<int>> A;

int dx[] = {0,1,0,-1};
int dy[] = {1,0,-1,0};
void drop(int r,int c,int q){
	if(A[r][c] != q)A[r][c] = q;
	else return;
	for(int i=0;i<4;i++){
		int nr = r + dy[i];
		int nc = c + dx[i];
		if(nr<0 || nc<0 || nr>=H || nc>=W)continue;
		if(A[nr][nc] == q)continue;
		drop(nr, nc, q);
	}
}

int main(void){
	cin >> H >> W;
	A = vector<vector<int>>(H,vector<int>(W));
	for(int i=0;i<H;i++){
		for(int j=0;j<W;j++){
			cin >> A[i][j];
		}
	}
	int Q;
	cin >> Q;
	int color = -1;
	for(int i=0;i<Q;i++){
		int r,c,q;
		cin >> r >> c >> q;
		r--;c--;
		if(color == -1)drop(r,c,q);
		else{
			color = q;
			continue;
		}
		bool all = true;
		for(int j=0;j<H;j++){
			for(int k=0;k<W;k++){
				if(q != A[j][k])all = false;
			}
		}
		if(all)color = q;
	}
	for(int i=0;i<H;i++){
		for(int j=0;j<W;j++){
			if(color == -1)cout << A[i][j] << " ";
			else cout << color << " ";
		}cout << endl;
	}

	return 0;
}
0