結果

問題 No.307 最近色塗る問題多くない?
ユーザー maine_honzukimaine_honzuki
提出日時 2021-05-14 19:58:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,713 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 215,224 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 23:42:30
合計ジャッジ時間 5,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 28 ms
5,248 KB
testcase_08 AC 224 ms
5,248 KB
testcase_09 AC 97 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 20 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 12 ms
5,248 KB
testcase_18 AC 33 ms
5,248 KB
testcase_19 AC 31 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 31 ms
5,248 KB
testcase_22 AC 21 ms
5,248 KB
testcase_23 AC 159 ms
5,248 KB
testcase_24 AC 73 ms
5,248 KB
testcase_25 AC 68 ms
5,248 KB
testcase_26 AC 182 ms
5,248 KB
testcase_27 WA -
testcase_28 AC 52 ms
5,248 KB
testcase_29 AC 17 ms
5,248 KB
testcase_30 AC 214 ms
5,248 KB
testcase_31 WA -
testcase_32 AC 33 ms
5,248 KB
testcase_33 AC 10 ms
5,248 KB
testcase_34 AC 32 ms
5,248 KB
testcase_35 AC 33 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//https://ncode.syosetu.com/n4830bu/307/
#include <bits/stdc++.h>
using namespace std;

int main() {
    int H, W;
    cin >> H >> W;
    vector A(H, vector(W, 0));
    for (auto&& V : A) {
        for (auto&& a : V) {
            cin >> a;
        }
    }
    int Q;
    cin >> Q;
    auto maine = [&](int h, int w) {
        return h * W + w;
    };
    auto book = [&](int x) {
        return make_pair(x / W, x % W);
    };
    int dx[4] = {0, 1, 0, -1}, dy[4] = {1, 0, -1, 0};
    int cnt = 0, clr = -1;
    while (Q--) {
        int R, C, X;
        cin >> R >> C >> X;
        R--;
        C--;
        if (cnt > H + W) {
            clr = X;
            continue;
        }
        if (A[R][C] == X)
            continue;
        cnt++;
        vector seen(H, vector(W, false));
        queue<pair<int, int>> que;
        que.push({R, C});
        seen[R][C] = true;
        while (!que.empty()) {
            auto [h, w] = que.front();
            que.pop();
            for (int i = 0; i < 4; i++) {
                int h_nxt = h + dx[i], w_nxt = w + dy[i];
                if (h_nxt >= 0 && h_nxt < H && w_nxt >= 0 && w_nxt < W) {
                    if (!seen[h_nxt][w_nxt] && A[h_nxt][w_nxt] != X) {
                        seen[h_nxt][w_nxt] = true;
                        que.push({h_nxt, w_nxt});
                    }
                }
            }
        }
        for (int h = 0; h < H; h++) {
            for (int w = 0; w < W; w++) {
                if (seen[h][w])
                    A[h][w] = X;
            }
        }
    }
    for (int h = 0; h < H; h++) {
        for (int w = 0; w < W; w++) {
            cout << (clr == -1 ? A[h][w] : clr) << " \n"[w == W - 1];
        }
    }
}
0