結果

問題 No.307 最近色塗る問題多くない?
ユーザー cormorancormoran
提出日時 2016-03-01 23:49:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 157 ms / 4,000 ms
コード長 2,067 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 81,180 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 16:57:25
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 19 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,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 11 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 28 ms
6,940 KB
testcase_19 AC 26 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 20 ms
6,944 KB
testcase_22 AC 18 ms
6,944 KB
testcase_23 AC 136 ms
6,940 KB
testcase_24 AC 49 ms
6,940 KB
testcase_25 AC 80 ms
6,940 KB
testcase_26 AC 153 ms
6,944 KB
testcase_27 AC 12 ms
6,944 KB
testcase_28 AC 23 ms
6,940 KB
testcase_29 AC 9 ms
6,940 KB
testcase_30 AC 157 ms
6,940 KB
testcase_31 AC 19 ms
6,944 KB
testcase_32 AC 18 ms
6,944 KB
testcase_33 AC 10 ms
6,940 KB
testcase_34 AC 18 ms
6,940 KB
testcase_35 AC 20 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//  yukicoder -  - 307  / 2016-03-01
#include<iostream>
#include<vector>
#include<cassert>
#include<string>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<tuple>
using namespace std;

typedef long long ll;
typedef pair<ll,ll> pll;
typedef ll int__;
#define rep(i,j) for(int__ i=0;i<(int__)(j);i++)
#define repeat(i,j,k) for(int__ i=(j);i<(int__)(k);i++)
#define all(v) v.begin(),v.end()

template<typename T>ostream& operator << (ostream &os , const vector<T> &v){
    rep(i,v.size()) os << v[i] << (i!=v.size()-1 ? " " : "\n"); return os;
}
template<typename T>istream& operator >> (istream &is , vector<T> &v){
    rep(i,v.size()) is >> v[i]; return is;
}

#ifdef DEBUG
void debug(){ cerr << endl; }
#endif
template<class F,class...R> void debug(const F &car,const R&... cdr){
#ifdef DEBUG
    cerr << car << " "; debug(cdr...);
#endif
}


const int dx[] = { 0, 1, 0, -1};
const int dy[] = {-1, 0, 1, 0};

int H, W;
vector<vector<int>> G;


int spread(int x, int y, int nxt_color){
    int prev_color = G[y][x];
    if(prev_color == nxt_color) return 0;
    G[y][x] = nxt_color;
    int cnt = 1;
    rep(dir, 4){
        int nx = x + dx[dir];
        int ny = y + dy[dir];
        if(0 <= nx and nx < W and
           0 <= ny and ny < H){
            if(G[ny][nx] == prev_color){
                cnt += spread(nx, ny, nxt_color);
            }
        }
    }
    return cnt;
}

bool solve(){
    cin >> H >> W;
    G.resize(H, vector<int>(W));
    rep(i, H) cin >> G[i];

    int Q; cin >> Q;
    bool ended = false;
    int last_color = 0;
    rep(i, Q){
        int y, x, c; cin >> y >> x >> c;
        y--; x--;
        if(not ended){
            if(spread(x, y, c) == H * W) ended = true;
        }
        last_color = c;
    }

    rep(y, H){
        rep(x, W){
            cout << (ended ? last_color : G[y][x]) << (x != W-1 ? " " : "\n");
        }
    }
    
    return false;
}

int main()
{
    ios::sync_with_stdio(false);
    while(solve());
    return 0;
}
0