結果

問題 No.307 最近色塗る問題多くない?
ユーザー かにかに
提出日時 2015-11-28 01:03:09
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,628 bytes
コンパイル時間 1,564 ms
コンパイル使用メモリ 166,100 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 16:43:35
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 25 ms
6,940 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 10 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 24 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,948 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 29 ms
6,944 KB
testcase_19 AC 28 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 24 ms
6,940 KB
testcase_22 AC 21 ms
6,944 KB
testcase_23 AC 136 ms
6,940 KB
testcase_24 AC 56 ms
6,940 KB
testcase_25 AC 94 ms
6,940 KB
testcase_26 AC 169 ms
6,944 KB
testcase_27 AC 22 ms
6,940 KB
testcase_28 AC 37 ms
6,940 KB
testcase_29 AC 16 ms
6,944 KB
testcase_30 AC 172 ms
6,944 KB
testcase_31 AC 38 ms
6,940 KB
testcase_32 AC 37 ms
6,944 KB
testcase_33 WA -
testcase_34 AC 38 ms
6,940 KB
testcase_35 AC 40 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void solve()’:
main.cpp:68:41: warning: ‘last’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   68 |                                 cout << last;
      |                                         ^~~~

ソースコード

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 = 1; i <= n; i++){
		for (int j = 1; j <= m; j++){
			cin >> board[i][j];
		}
	}
	int q;
	cin >> q;
	bool end = false;
	int last;
	rep(i, q){
		int x, y, c;
		cin >> y >> x >> c;
		queue<pair<int, int>> st;
		st.push(make_pair(x, y));
		int f = board[y][x];
		int cnt = 0;
		if (end){
			last = c;
			continue;
		}
		if (c != f){
			while (!st.empty()){
				pair<int, int> pos = st.front();
				st.pop();
				cnt++;
				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 >= 1 && newX <= m && newY >= 1 && newY <= n){
						if (board[newY][newX] == f){
							st.push(make_pair(newX, newY));
							board[newY][newX] = c;
						}
					}
				}
			}
		}
		if (cnt == n*m)end = true;
	}
	if (end){
		for (int i = 1; i <= n; i++){
			for (int j = 1; j <= m; j++){
				cout << last;
				if (j != m)cout << " ";
			}
			cout << endl;
		}
	}
	else{
		for (int i = 1; i <= n; i++){
			for (int j = 1; j <= m; j++){
				cout << board[i][j];
				if (j != m)cout << " ";
			}
			cout << endl;
		}
	}
}

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