結果

問題 No.307 最近色塗る問題多くない?
ユーザー okadukiokaduki
提出日時 2015-11-28 00:23:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 150 ms / 4,000 ms
コード長 1,752 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 159,952 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 16:42:18
合計ジャッジ時間 3,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 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,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 26 ms
6,940 KB
testcase_19 AC 23 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 19 ms
6,940 KB
testcase_22 AC 17 ms
6,944 KB
testcase_23 AC 134 ms
6,944 KB
testcase_24 AC 52 ms
6,940 KB
testcase_25 AC 75 ms
6,944 KB
testcase_26 AC 150 ms
6,944 KB
testcase_27 AC 33 ms
6,940 KB
testcase_28 AC 32 ms
6,944 KB
testcase_29 AC 7 ms
6,940 KB
testcase_30 AC 150 ms
6,944 KB
testcase_31 AC 38 ms
6,944 KB
testcase_32 AC 16 ms
6,940 KB
testcase_33 AC 9 ms
6,940 KB
testcase_34 AC 16 ms
6,944 KB
testcase_35 AC 17 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

//typedef
//------------------------------------------
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;

//container util
//------------------------------------------
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define SZ(a) int((a).size())
#define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define SORT(c) sort((c).begin(),(c).end())

//repetition
//------------------------------------------
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)

//constant
//--------------------------------------------
const double EPS = 1e-10;
const double PI  = acos(-1.0);

int dx[] = {-1,1,0,0};
int dy[] = {0,0,-1,1};
int col[200][200];
bool use[200][200];
int H, W;
int dfs(int x, int y, int c){
  if(col[y][x] == c) return 0;
  col[y][x] = c;
  int sum = 1;
  REP(i,4){
	int tx=  x+dx[i], ty=y+dy[i];
	if(tx<0||W<=tx||ty<0||H<=ty||use[ty][tx]) continue;
	use[ty][tx] = true;
	sum += dfs(tx,ty,c);
  }
  return sum;
}

int main(){
  cin.tie(0);
  ios_base::sync_with_stdio(false);

  cin >> H >> W;
  REP(y,H) REP(x,W){
	cin >> col[y][x];
  }

  int Q; cin >> Q;
  bool fin = false;
  int c;
  while(Q--){
	int y, x;  cin >> y >> x >> c;
	--y,--x;
	if(!fin && col[y][x] != c){
	  fill((bool*)use, (bool*)use+200*200, false);
	  use[y][x] = true;
	  fin = dfs(x,y,c) == W*H;
	}
  }
  if(fin){
	REP(y,H){
	  REP(x,W) cout << (x==0?"":" ") << c;
	  cout << endl;
	}
  }
  else
	REP(y,H){
	  REP(x,W) cout << (x==0?"":" ") << col[y][x];
	  cout << endl;
	}

  return 0;
}
0