結果

問題 No.307 最近色塗る問題多くない?
ユーザー simansiman
提出日時 2023-06-08 01:57:05
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,202 bytes
コンパイル時間 3,200 ms
コンパイル使用メモリ 141,932 KB
実行使用メモリ 14,016 KB
最終ジャッジ日時 2024-06-09 15:28:17
合計ジャッジ時間 9,747 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int g_visited[210][210];
int g_vid;
int A[210][210];

const int DY[4] = {-1, 0, 1, 0};
const int DX[4] = {0, 1, 0, -1};

int fill_x(int y, int x, int c, int nc) {
  int cnt = 1;
  g_visited[y][x] = g_vid;
  A[y][x] = nc;

  for (int dir = 0; dir < 4; ++dir) {
    int ny = y + DY[dir];
    int nx = x + DX[dir];
    if (A[ny][nx] != c) continue;

    cnt += fill_x(ny, nx, c, nc);
  }

  return cnt;
}

int main() {
  g_vid = 0;
  memset(g_visited, -1, sizeof(g_visited));

  int H, W;
  cin >> H >> W;
  memset(A, -1, sizeof(A));

  for (int y = 1; y <= H; ++y) {
    for (int x = 1; x <= W; ++x) {
      cin >> A[y][x];
    }
  }
  int Q;
  cin >> Q;
  for (int i = 0; i < Q; ++i) {
    int R, C, X;
    cin >> R >> C >> X;

    if (A[R][C] == X) continue;
    fill_x(R, C, A[R][C], X);
  }

  for (int y = 1; y <= H; ++y) {
    for (int x = 1; x <= W; ++x) {
      cout << A[y][x];
      if (x < W) cout << " ";
    }
    cout << endl;
  }

  return 0;
}
0