結果

問題 No.307 最近色塗る問題多くない?
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-10-07 23:57:14
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,185 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 67,824 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 17:01:37
合計ジャッジ時間 3,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 23 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 29 ms
5,376 KB
testcase_19 AC 25 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 23 ms
5,376 KB
testcase_22 AC 21 ms
5,376 KB
testcase_23 AC 138 ms
5,376 KB
testcase_24 AC 54 ms
5,376 KB
testcase_25 AC 94 ms
5,376 KB
testcase_26 AC 169 ms
5,376 KB
testcase_27 AC 22 ms
5,376 KB
testcase_28 AC 36 ms
5,376 KB
testcase_29 AC 16 ms
5,376 KB
testcase_30 AC 175 ms
5,376 KB
testcase_31 AC 40 ms
5,376 KB
testcase_32 AC 40 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 37 ms
5,376 KB
testcase_35 AC 37 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <queue>
#include <cstdio>
#include <algorithm>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)

int dy[] = {1, 0, -1, 0};
int dx[] = {0, 1, 0, -1};	
int h, w;
int a[210][210];
int q;

int main(void){
	cin >> h >> w;
	rep(i, h)rep(j, w) cin >> a[i][j];

	cin >> q;
	bool flag = false;
	int fcolor;
	rep(i, q){
		int r, c, x; cin >> r >> c >> x;
		r--;c--;
		if(flag){
			fcolor = x;
			continue;
		}
		queue<pair<int, int> > que;
		que.push(make_pair(r, c));
		int color = a[r][c];
		if(color == x) continue;
		a[r][c] = x;
		int cnt = 0;
		while(!que.empty()){
			int nowy = que.front().first, nowx = que.front().second;
			que.pop();
			rep(k, 4){
				int ny = nowy + dy[k], nx = nowx + dx[k];
				if(!(0 <= ny && ny < h && 0 <= nx && nx < w)) continue;
				if(a[ny][nx] == color && a[ny][nx] != x){
					a[ny][nx] = x;
					cnt++;
					que.push(make_pair(ny, nx));
				}
			}
		}
		if(cnt >= h * w - 1){
			flag = true;
		}
	}

	if(flag){
		rep(i, h){
			rep(j, w){
				printf("%d ", fcolor);
			}
			printf("\n");
		}
	}else{
		rep(i, h){
			rep(j, w){
				printf("%d ", a[i][j]);
			}
			printf("\n");
		}
	}
	return 0;
}
0