結果

問題 No.697 池の数はいくつか
ユーザー mocobtmocobt
提出日時 2018-06-10 23:29:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 654 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 64,428 KB
実行使用メモリ 741,796 KB
最終ジャッジ日時 2024-05-04 05:41:51
合計ジャッジ時間 11,956 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,948 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,948 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 146 ms
15,868 KB
testcase_25 AC 148 ms
15,864 KB
testcase_26 AC 148 ms
14,896 KB
testcase_27 AC 147 ms
16,200 KB
testcase_28 AC 152 ms
15,116 KB
testcase_29 MLE -
testcase_30 AC 1,335 ms
38,452 KB
testcase_31 MLE -
testcase_32 AC 1,324 ms
38,576 KB
testcase_33 AC 1,358 ms
38,452 KB
testcase_34 AC 1,344 ms
38,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int H,W;
int A[3000][3000];

void dfs(int x, int y){
    if(A[y][x]==0) return;
    A[y][x] = 0;
    if(y+1<H  && A[y+1][x]==1) dfs(x,y+1);
    if(y-1>=0 && A[y-1][x]==1) dfs(x,y-1);
    if(x+1<W  && A[y][x+1]==1) dfs(x+1,y);
    if(x-1>=0 && A[y][x-1]==1) dfs(x-1,y);
}

void solve(){
    int res = 0;
    for(int j=0;j<H;j++){
        for(int i=0;i<W;i++){    
            if(A[j][i]==1){
                dfs(i,j);
                res++;
            }
        }
    }
    cout << res << endl;
}

int main(){    
    cin >> H >> W;
    for(int j=0; j<H; j++) for(int i=0; i<W;i++) cin >> A[j][i]; 
    solve();
}
0