結果

問題 No.697 池の数はいくつか
ユーザー mocobtmocobt
提出日時 2018-06-10 22:54:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 63,856 KB
実行使用メモリ 38,736 KB
最終ジャッジ日時 2024-05-04 05:40:27
合計ジャッジ時間 11,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1,212 ms
38,688 KB
testcase_30 WA -
testcase_31 AC 1,207 ms
38,736 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define MAX_H 3000
#define MAX_W 3000

using namespace std;

int H,W;
int A[MAX_H][MAX_W];

void dfs(int x, int y){
    A[y][x] = 0;
    int nx, ny;
    
    nx=x; ny=y+1;
    if(ny<H && A[ny][nx]==1) dfs(nx,ny);

    nx=x+1; ny=y;
    if(nx<W && A[ny][nx]==1) dfs(nx,ny);
}

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