結果

問題 No.307 最近色塗る問題多くない?
ユーザー ctyl_0ctyl_0
提出日時 2015-11-29 01:56:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 174 ms / 4,000 ms
コード長 2,368 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 94,912 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 16:54:08
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 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 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 25 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 31 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 24 ms
5,376 KB
testcase_22 AC 22 ms
5,376 KB
testcase_23 AC 140 ms
5,376 KB
testcase_24 AC 56 ms
5,376 KB
testcase_25 AC 93 ms
5,376 KB
testcase_26 AC 170 ms
5,376 KB
testcase_27 AC 21 ms
5,376 KB
testcase_28 AC 34 ms
5,376 KB
testcase_29 AC 14 ms
5,376 KB
testcase_30 AC 174 ms
5,376 KB
testcase_31 AC 35 ms
5,376 KB
testcase_32 AC 34 ms
5,376 KB
testcase_33 AC 11 ms
5,376 KB
testcase_34 AC 34 ms
5,376 KB
testcase_35 AC 34 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cmath>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <sstream>
#include <string>

#define repd(i,a,b) for (int i=(a);i<(b);i++)
#define rep(i,n) repd(i,0,n)
#define var auto
#define mod 1000000007
#define inf 2147483647
#define nil -1
typedef long long ll;

using namespace std;

inline int input(){
    int a;
    cin >> a;
    return a;
}

template <typename T>
inline void output(T a, int p) {
    if(p){
        cout << fixed << setprecision(p)  << a << "\n";
    }
    else{
        cout << a << "\n";
    }
}

// end of template

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

int main() {
    cin.tie(0);
    // source code
    int H = input();
    int W = input();
    vector<vector<int>> A(H, vector<int>(W));
    
    rep(i, H){
        rep(j, W){
            cin >> A[i][j];
        }
    }
    
    int Q;
    cin >> Q;
    queue<pair<int, int>> q;
    
    vector<int> R(Q), C(Q), X(Q);
    
    rep(i, Q){
        cin >> R[i] >> C[i] >> X[i];
        R[i]--, C[i]--;
    }
    int count = 0;
    rep(i, Q){
        if (A[R[i]][C[i]] == X[i]) continue;
        
        // A[R][C] != X
        
        q.push(make_pair(R[i], C[i]));
        A[R[i]][C[i]] = X[i];
        count = 0;
        while (!q.empty()) {
            pair<int, int> t = q.front();
            q.pop();
            count++;
            rep(j, 4){
                if (t.first + dy[j] >= 0 && t.first + dy[j] < H && t.second + dx[j] >= 0 && t.second + dx[j] < W && A[t.first + dy[j]][t.second + dx[j]] != X[i]) { // 隣接している,かつXと違う色のマスを訪れる
                    A[t.first + dy[j]][t.second + dx[j]] = X[i];
                    q.push(make_pair(t.first + dy[j], t.second + dx[j]));
                }
            }
        }
        if (count == H * W) {
            break;
        }
    }
    
    if(count < H * W){
        rep(i, H){
            rep(j, W){
                if (j) cout << " ";
                cout << A[i][j];
            }
            cout << endl;
        }
        
    }
    else{
        rep(i, H){
            rep(j, W){
                if (j) cout << " ";
                cout << X[Q - 1];
            }
            cout << endl;
        }
    }
    return 0;
}
0