結果

問題 No.697 池の数はいくつか
ユーザー maspymaspy
提出日時 2020-02-29 02:41:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 950 bytes
コンパイル時間 1,744 ms
コンパイル使用メモリ 170,444 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-04 06:54:54
合計ジャッジ時間 10,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 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,940 KB
testcase_07 AC 2 ms
6,944 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,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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 (i = 0; i < 4; i++)
            {
                int w = v + dx[i];
                if ((not A[w]) or (comp[w]))
                {
                    continue;
                }
                comp[w] = n;
                q.push(w);
            }
        }
        n++;
    }
    cout << n - 1 << endl;
}
0