結果

問題 No.697 池の数はいくつか
ユーザー parsee1053parsee1053
提出日時 2021-01-01 17:59:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 997 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 87,052 KB
実行使用メモリ 741,760 KB
最終ジャッジ日時 2024-05-04 07:16:10
合計ジャッジ時間 13,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
38,528 KB
testcase_01 AC 26 ms
38,528 KB
testcase_02 AC 26 ms
38,528 KB
testcase_03 AC 25 ms
38,656 KB
testcase_04 AC 25 ms
38,528 KB
testcase_05 AC 25 ms
38,528 KB
testcase_06 AC 25 ms
38,528 KB
testcase_07 AC 24 ms
38,528 KB
testcase_08 AC 26 ms
38,528 KB
testcase_09 AC 25 ms
38,656 KB
testcase_10 AC 26 ms
38,528 KB
testcase_11 AC 25 ms
38,528 KB
testcase_12 AC 26 ms
38,656 KB
testcase_13 AC 25 ms
38,784 KB
testcase_14 AC 25 ms
38,528 KB
testcase_15 AC 24 ms
38,656 KB
testcase_16 AC 23 ms
38,528 KB
testcase_17 AC 24 ms
38,528 KB
testcase_18 AC 24 ms
38,656 KB
testcase_19 AC 24 ms
38,528 KB
testcase_20 AC 24 ms
38,528 KB
testcase_21 AC 25 ms
38,528 KB
testcase_22 AC 25 ms
38,528 KB
testcase_23 AC 24 ms
38,656 KB
testcase_24 AC 181 ms
38,528 KB
testcase_25 AC 177 ms
38,528 KB
testcase_26 AC 177 ms
38,528 KB
testcase_27 AC 178 ms
38,528 KB
testcase_28 AC 176 ms
38,528 KB
testcase_29 MLE -
testcase_30 AC 1,394 ms
38,528 KB
testcase_31 MLE -
testcase_32 AC 1,413 ms
38,656 KB
testcase_33 AC 1,399 ms
38,656 KB
testcase_34 AC 1,406 ms
38,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>

using namespace std;

typedef long long ll;

#define MOD 1000000007

int h, w;
vector<vector<int> > a(3000, vector<int>(3000));

void dfs(int y, int x) {
  a[y][x] = 2;
  for (int i = -1; i <= 1; ++i) {
    for (int j = -1; j <= 1; ++j) {
      if (i * i + j * j == 1) {
        int ny = y + i, nx = x + j;
        if (0 <= ny && ny < h && 0 <= nx && nx < w) {
          if (a[ny][nx] == 1) {
            dfs(ny, nx);
          }
        }
      }
    }
  }
}

int main() {
  cin >> h >> w;
  for (int i = 0; i < h; ++i) {
    for (int j = 0; j < w; ++j) {
      cin >> a[i][j];
    }
  }
  int ans = 0;
  for (int i = 0; i < h; ++i) {
    for (int j = 0; j < w; ++j) {
      if (a[i][j] == 1) {
        ans++;
        dfs(i, j);
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0