結果

問題 No.307 最近色塗る問題多くない?
ユーザー kurenaifkurenaif
提出日時 2016-05-31 18:56:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 168 ms / 4,000 ms
コード長 2,171 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 80,616 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-05-01 16:59:27
合計ジャッジ時間 3,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 30 ms
6,656 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 24 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 32 ms
6,016 KB
testcase_19 AC 29 ms
6,144 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 25 ms
5,632 KB
testcase_22 AC 24 ms
6,784 KB
testcase_23 AC 130 ms
6,784 KB
testcase_24 AC 55 ms
5,504 KB
testcase_25 AC 97 ms
6,912 KB
testcase_26 AC 167 ms
6,784 KB
testcase_27 AC 23 ms
5,376 KB
testcase_28 AC 40 ms
6,944 KB
testcase_29 AC 17 ms
5,376 KB
testcase_30 AC 168 ms
7,040 KB
testcase_31 AC 40 ms
5,376 KB
testcase_32 AC 40 ms
5,376 KB
testcase_33 AC 16 ms
6,944 KB
testcase_34 AC 39 ms
5,376 KB
testcase_35 AC 41 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <map>
#include <list>
#include <vector>
#include <string>
#include <limits>
#include <cassert>
#include <fstream>
#include <cstring>
#include <bitset>
#include <iomanip>

using namespace std;

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)

#define inf INT_MAX/3
#define INF INT_MAX/3
#define PB push_back
#define MP make_pair
#define ALL(a) (a).begin(),(a).end()
#define SET(a,c) memset(a,c,sizeof a)
#define CLR(a) memset(a,0,sizeof a)
#define pii pair<int,int>
#define pcc pair<char,char>
#define pic pair<int,char>
#define pci pair<char,int>
#define VS vector<string>
#define VI vector<int>
#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define MIN(a,b) (a>b?b:a)
#define MAX(a,b) (a>b?a:b)
#define pi 2*acos(0.0)
#define INFILE() freopen("in0.txt","r",stdin)
#define OUTFILE()freopen("out0.txt","w",stdout)
#define in scanf
#define out printf
#define ll long long
#define ull unsigned long long
#define eps 1e-14
#define FST first
#define SEC second

int dx[] = { 1, 0, -1, 0 };
int dy[] = { 0, 1, 0, -1 };

queue<pair<int, int> > sel;

int A[204][204];
void select(int i, int j, int x) {
	sel.push(MP(i, j));
	for (int c = 0; c < 4; ++c) {
		if (A[i + dy[c]][j + dx[c]] == x) {
			A[i + dy[c]][j + dx[c]] = -2;
			select(i + dy[c], j + dx[c], x);
		}
	}
}

int main(void) {
	int H, W;
	memset(A, -1, sizeof(A));

	cin >> H >> W;
	for (int h = 1; h <= H; ++h) {
		for (int w = 1; w <= W; ++w) {
			cin >> A[h][w];
		}
	}
	int Q; cin >> Q;

	bool isEnd = false;
	int R, C, X;
	for (int count = 0; count < Q; ++count) {
		cin >> R >> C >> X;
		if (X == A[R][C]) continue;
		select(R, C, A[R][C]);
		if (sel.size() >= H*W) {
			isEnd = true;
			++count;
			for (; count < Q; ++count) {
				cin >> R >> C >> X;
			}
		}
		while (!sel.empty()) {
			auto a = sel.front(); sel.pop();
			A[a.first][a.second] = X;
		}
	}

	for (int i = 1; i <= H; ++i) {
		for (int j = 1; j <= W; ++j) {
			if (isEnd) cout << X;
			else cout << A[i][j];
			if (j != W) cout << " ";
		}
		cout << endl;
	}
	return 0;
}
0