結果

問題 No.697 池の数はいくつか
ユーザー maspymaspy
提出日時 2020-02-29 02:42:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 949 bytes
コンパイル時間 1,694 ms
コンパイル使用メモリ 172,740 KB
実行使用メモリ 48,968 KB
最終ジャッジ日時 2024-11-25 15:57:08
合計ジャッジ時間 69,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,036 KB
testcase_01 AC 2 ms
13,036 KB
testcase_02 AC 2 ms
13,036 KB
testcase_03 AC 3 ms
14,952 KB
testcase_04 AC 2 ms
12,780 KB
testcase_05 AC 2 ms
21,220 KB
testcase_06 AC 2 ms
21,224 KB
testcase_07 AC 3 ms
21,220 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,448 ms
48,968 KB
testcase_30 TLE -
testcase_31 AC 1,450 ms
48,840 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

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