結果

問題 No.307 最近色塗る問題多くない?
ユーザー parukiparuki
提出日時 2016-07-08 15:19:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,667 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 163,588 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-04-21 01:07:06
合計ジャッジ時間 9,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 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 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 36 ms
6,784 KB
testcase_09 AC 15 ms
5,504 KB
testcase_10 AC 44 ms
5,376 KB
testcase_11 AC 257 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 27 ms
5,376 KB
testcase_18 AC 78 ms
6,400 KB
testcase_19 AC 69 ms
6,400 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 51 ms
5,760 KB
testcase_22 AC 46 ms
6,912 KB
testcase_23 AC 407 ms
6,912 KB
testcase_24 AC 148 ms
5,760 KB
testcase_25 AC 213 ms
7,040 KB
testcase_26 AC 438 ms
7,168 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

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

int H, W, A[200][200], vis[200][200];

void dfs(int y, int x, int col, int &cnt, bool flag){
    if(A[y][x] != col){
        if(vis[y][x]++)return;
        if(flag){
            A[y][x] = col;
        } else{
            ++cnt;
        }
        rep(i, 4){
            int ny = y + DY[i], nx = x + DX[i];
            if(ny >= 0 && ny < H&&nx >= 0 && nx < W)dfs(ny, nx, col, cnt, flag);
        }
    }
}

int main(){
    while(cin >> H >> W){
        rep(y, H)rep(x, W)scanf("%d", &A[y][x]);

        int cnt = 0, lastCol = 0;
        int Q; cin >> Q;
        while(Q--){
            int Y, X, C;
            scanf("%d%d%d", &Y, &X, &C);
            --Y;
            --X;
            lastCol = C;
            if(cnt == H*W || A[Y][X]==C)continue;
            MEM(vis, 0);
            dfs(Y, X, C, cnt, 1);
            cnt = 0;
            MEM(vis, 0);
            dfs(Y, X, 1 - C, cnt, 0);
        }
        if(cnt == H*W)rep(y, H)rep(x, W)A[y][x] = lastCol;
        rep(y, H){
            rep(x, W){
                printf("%d%c", A[y][x], x == W - 1 ? '\n' : ' ');
            }
        }
    }
}
0