結果

問題 No.697 池の数はいくつか
ユーザー yuki00130yuki00130
提出日時 2018-06-09 16:22:21
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 832 bytes
コンパイル時間 710 ms
コンパイル使用メモリ 61,608 KB
実行使用メモリ 587,152 KB
最終ジャッジ日時 2024-05-04 05:11:57
合計ジャッジ時間 14,782 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 180 ms
8,448 KB
testcase_25 AC 180 ms
8,320 KB
testcase_26 AC 182 ms
8,576 KB
testcase_27 AC 183 ms
8,448 KB
testcase_28 AC 179 ms
8,320 KB
testcase_29 MLE -
testcase_30 AC 1,594 ms
24,796 KB
testcase_31 MLE -
testcase_32 AC 1,587 ms
23,936 KB
testcase_33 AC 1,619 ms
24,852 KB
testcase_34 AC 1,589 ms
24,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>

using namespace std;

int H,W;
bool A[10000][10000];

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

int solve(int y,int x){
    if (!A[y][x])
    {
        return 0;
    }
    A[y][x] = false;
    for (int k = 0; k < 4; k++)
    {
        int ny = y + dy[k];
        int nx = x + dx[k];
        if(0 <= ny && ny < H && 0 <= nx && nx < W){
            solve(ny, nx);
        }
    }
    return 1;
}

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

    int res = 0;
    for(int i = 0;i < H;i++)
    {
        for(int j = 0;j < W;j++)
        {
            res += solve(i,j);
        }
    }

    cout << res << endl;

    return 0;
}
0