結果

問題 No.697 池の数はいくつか
ユーザー maspymaspy
提出日時 2020-02-29 02:43:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,695 ms / 6,000 ms
コード長 954 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 167,344 KB
実行使用メモリ 49,224 KB
最終ジャッジ日時 2024-04-25 20:45:17
合計ジャッジ時間 14,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 189 ms
9,544 KB
testcase_25 AC 187 ms
9,548 KB
testcase_26 AC 190 ms
9,420 KB
testcase_27 AC 191 ms
9,540 KB
testcase_28 AC 189 ms
9,544 KB
testcase_29 AC 1,561 ms
49,092 KB
testcase_30 AC 1,674 ms
47,820 KB
testcase_31 AC 1,557 ms
49,224 KB
testcase_32 AC 1,695 ms
48,964 KB
testcase_33 AC 1,675 ms
49,100 KB
testcase_34 AC 1,677 ms
48,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

bool A[10000000];
int comp[10000000];

int main()
{
    int H, W;
    cin >> H >> W;
    H += 2;
    W += 2;
    for (int i = 1; i <= H - 2; i++)
    {
        for (int j = 1; j <= W - 2; j++)
        {
            cin >> A[W * i + j];
        }
    }
    int n = 1;
    for (int i = 0; i < H * W; i++)
    {
        if ((not A[i]) or (comp[i]))
        {
            continue;
        }
        comp[i] = n;
        queue<int> q;
        q.push(i);
        while (!q.empty())
        {
            int v = q.front();
            q.pop();

            int dx[] = {1, -1, W, -W};
            for (int j = 0; j < 4; j++)
            {
                int w = v + dx[j];
                if ((not A[w]) or (comp[w]))
                {
                    continue;
                }
                comp[w] = n;
                q.push(w);
            }
        }
        n++;
    }
    cout << n - 1 << endl;
}
0