結果

問題 No.697 池の数はいくつか
ユーザー xuzijian629xuzijian629
提出日時 2018-08-29 23:10:19
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,100 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 83,304 KB
実行使用メモリ 433,992 KB
最終ジャッジ日時 2024-11-25 14:03:21
合計ジャッジ時間 13,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 172 ms
6,820 KB
testcase_25 AC 172 ms
6,980 KB
testcase_26 AC 171 ms
7,144 KB
testcase_27 AC 175 ms
7,132 KB
testcase_28 AC 170 ms
6,816 KB
testcase_29 MLE -
testcase_30 AC 1,540 ms
12,164 KB
testcase_31 MLE -
testcase_32 AC 1,547 ms
12,140 KB
testcase_33 AC 1,512 ms
12,088 KB
testcase_34 AC 1,520 ms
12,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <stack>
#include <queue>
#include <map>
#include <unordered_map>
#include <cassert>
using namespace std;
using i64 = int64_t;
constexpr i64 mod = 1e9 + 7;
using vi = vector<i64>;
using vvi = vector<vi>;
using ii = pair<i64, i64>;
using vii = vector<ii>;

int h, w;
bool board[3000][3000];

bool is_valid(ii p) {
    int x = p.first, y = p.second;
    return 0 <= x && x < h && 0 <= y && y < w;
}

void dfs(ii p) {
    int x = p.first, y = p.second;
    if (is_valid(p) && board[x][y]) {
        board[x][y] = 0;
        dfs(ii(x + 1, y));
        dfs(ii(x - 1, y));
        dfs(ii(x, y + 1));
        dfs(ii(x, y - 1));
    }
}

int cnt;

int main() {
    cin >> h >> w;
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            cin >> board[i][j];
        }
    }
    
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            if (board[i][j]) {
                dfs(ii(i, j));
                cnt++;
            }
        }
    }
    
    cout << cnt << endl;
}
0