結果

問題 No.697 池の数はいくつか
ユーザー troro_kelptroro_kelp
提出日時 2018-10-16 17:03:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,007 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 70,152 KB
実行使用メモリ 434,140 KB
最終ジャッジ日時 2024-05-04 06:17:43
合計ジャッジ時間 11,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 147 ms
6,944 KB
testcase_25 AC 151 ms
7,636 KB
testcase_26 AC 148 ms
7,088 KB
testcase_27 AC 147 ms
7,804 KB
testcase_28 AC 150 ms
6,940 KB
testcase_29 MLE -
testcase_30 AC 1,321 ms
12,256 KB
testcase_31 MLE -
testcase_32 AC 1,350 ms
12,288 KB
testcase_33 AC 1,305 ms
12,228 KB
testcase_34 AC 1,318 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int H, W;
int dxy[5] = {-1, 0, 1, 0, -1};
bool v[3005][3005];
int ans;
void dfs(int y, int x)
{
    if (v[y][x] == false)
        return;
    v[y][x] = 0;
    for (int i = 1; i < 5; ++i)
    {
        int ny = y + dxy[i], nx = x + dxy[i - 1];
        if (ny >= 0 && nx >= 0 && ny < H && nx < W && v[ny][nx] != false)
        {
            dfs(ny, nx);
        }
    }
    return;
}
int main(void)
{
    cin >> H >> W;
    for (int i = 0; i < H; ++i)
    {
        for (int j = 0; j < W; ++j)
        {
            int a;
            cin >> a;
            if (a == 1)
                v[i][j] = true;
            else
                v[i][j] = false;
        }
    }
    for (int i = 0; i < H; ++i)
    {
        for (int j = 0; j < W; ++j)
        {
            if (v[i][j])
            {
                dfs(i, j);
                ans++;
            }
        }
    }
    cout << ans << endl;
    return 0;
}
0