結果

問題 No.307 最近色塗る問題多くない?
ユーザー greentea011greentea011
提出日時 2019-04-10 11:55:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 626 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 64,932 KB
実行使用メモリ 12,188 KB
最終ジャッジ日時 2024-07-06 15:41:22
合計ジャッジ時間 12,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,932 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 214 ms
6,940 KB
testcase_08 TLE -
testcase_09 AC 406 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 51 ms
6,940 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 12 ms
6,944 KB
testcase_18 AC 27 ms
6,940 KB
testcase_19 AC 25 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 22 ms
6,944 KB
testcase_22 AC 21 ms
6,940 KB
testcase_23 AC 117 ms
6,944 KB
testcase_24 AC 49 ms
6,944 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int a[40010]={0};
int w,h,q;

void f(int x,int y, int r) {
    if (x<0 || x>=w) return;
    if (y<0 || y>=h) return;
    if (a[x*h+y]==r) return;
    a[x*h+y]=r;
    f(x-1,y,r);
    f(x+1,y,r);
    f(x,y-1,r);
    f(x,y+1,r);
}

int main() {
    std::cin >> w >> h;
    for (int i=0;i<w;i++) for (int j=0;j<h;j++) std::cin >> a[h*i+j];
    std::cin >> q;
    int x,y,r;
    for (int i=0;i<q;i++) {
        std::cin >> x >> y >> r;
        f(x-1,y-1,r);
    }
    for (int i=0;i<w;i++) {
        for (int j=0;j<h;j++) {
            std::cout << a[h*i+j] << " ";
        }
        std::cout << "\n";
    }
}
0