結果

問題 No.307 最近色塗る問題多くない?
ユーザー かにかに
提出日時 2015-11-27 23:14:45
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,450 bytes
コンパイル時間 1,238 ms
コンパイル使用メモリ 151,288 KB
実行使用メモリ 4,480 KB
最終ジャッジ日時 2023-10-12 00:40:01
合計ジャッジ時間 3,908 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 11 ms
4,352 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include "bits/stdc++.h"
#define rep(i,n) for(int i = 0;i < n;i++)
#define P(p) cout<<(p)<<endl;
using namespace std;
typedef long long ll;
int dx[] = { 0, 1, 0, -1 };
int dy[] = { -1, 0, 1, 0 };

int sttoi(std::string str) {
	int ret;
	std::stringstream ss; ss << str;
	ss >> ret;
	return ret;
}

ll gcd(ll a, ll b){
	if (b > a)swap(a, b); if (b == 0)return a; else{ return gcd(b, a%b); }
}
void solve() {
	int n, m;
	cin >> n >> m;
	int board[201][201];
	for (int i = 0; i < n;i++){
		for (int j = 0; j < m;j++){
			cin >> board[i][j];
		}
	}
	int q;
	cin >> q;
	rep(i, q){
		int x, y, c;
		cin >> x >> y >> c;
		bool flag = true;
		int colo = board[0][0];
		for (int j = 0; j < n; j++){
			for (int k = 0; k < m; k++){
				if (board[i][j] != colo){
					flag = false;
				}
			}
		}
		if (flag){
			break;
		}
		x--; y--;
		stack<pair<int, int>> st;
		st.push(make_pair(x, y));
		while (!st.empty()){
			pair<int, int> pos = st.top();
			st.pop();
			board[pos.second][pos.first] = c;
			for (int j = 0; j < 4; j++){
				int newX = pos.first + dx[j];
				int newY = pos.second + dy[j];
				if (newX >= 0 && newX < m && newY >= 0 && newY < n){
					if (board[newY][newX] != c){
						st.push(make_pair(newX, newY));
					}
				}
			}
		}
	}
	for (int i = 0; i < n; i++){
		for (int j = 0; j < m; j++){
			cout << board[i][j];
			if (j != m-1)cout << " ";
		}
		cout << endl;
	}
}

int main() {
	solve();
	return 0;
}
0