結果

問題 No.307 最近色塗る問題多くない?
ユーザー koba-e964koba-e964
提出日時 2015-12-04 16:15:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 259 ms / 4,000 ms
コード長 2,123 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 95,928 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 16:56:27
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 15 ms
5,376 KB
testcase_18 AC 40 ms
5,376 KB
testcase_19 AC 37 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 30 ms
5,376 KB
testcase_22 AC 26 ms
5,376 KB
testcase_23 AC 199 ms
5,376 KB
testcase_24 AC 76 ms
5,376 KB
testcase_25 AC 129 ms
5,376 KB
testcase_26 AC 235 ms
5,376 KB
testcase_27 AC 23 ms
5,376 KB
testcase_28 AC 39 ms
5,376 KB
testcase_29 AC 15 ms
5,376 KB
testcase_30 AC 259 ms
5,376 KB
testcase_31 AC 40 ms
5,376 KB
testcase_32 AC 38 ms
5,376 KB
testcase_33 AC 13 ms
5,376 KB
testcase_34 AC 39 ms
5,376 KB
testcase_35 AC 38 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef pair<int, int> PI;
const double EPS=1e-9;


VI a[201];
int h,w;

int get_col(int x, int y) {
    if (x < 0 || x >= h || y < 0 || y >= w) {
        return -1;
    }
    return a[x][y];
}

int main(void){
    cin >> h >> w;
    REP(i, 0, h) {
        a[i].reserve(w);
        REP(j, 0, w) {
            int b;
            cin >> b;
            a[i].push_back(b);
        }
    }
    int q;
    int saturated = 0;
    int sat_col = -1;
    cin >> q;
    REP(loop, 0, q) {
        int r,c,x;
        cin >> r >> c >> x;
        r--,c--;
        if (saturated) {
            sat_col = x;
            continue;
        }
        int col = a[r][c];
        if (x == col) {
            continue;
        }
        int dir[5] = {0,1,0,-1,0};
        queue<PI> que;
        que.push(PI(r, c));
        int cnt = 0;
        while (!que.empty()) {
            PI t = que.front(); que.pop();
            int x = t.first, y = t.second;
            if (a[x][y] == 1 - col) {
                continue;
            }
            REP(d, 0, 4) {
                int dx = dir[d], dy = dir[d + 1];
                if (get_col(x + dx, y + dy) == col) {
                    que.push(PI(x + dx, y + dy));
                }
            }
            a[x][y] = 1 - col;
            cnt++;
        }
        if (cnt >= w * h) {
            saturated = 1;
            sat_col = a[r][c];
        }
    }
    REP(i, 0, h) {
        REP(j, 0, w) {
            if (saturated) {
                a[i][j] = sat_col;
            }
            cout << a[i][j] << (j == w - 1 ? "\n" : " ");
        }
    }
}
0