結果

問題 No.697 池の数はいくつか
ユーザー parsee1053parsee1053
提出日時 2021-01-01 17:52:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,090 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 92,328 KB
実行使用メモリ 743,168 KB
最終ジャッジ日時 2024-05-04 07:16:44
合計ジャッジ時間 14,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
39,936 KB
testcase_01 AC 27 ms
40,064 KB
testcase_02 AC 26 ms
39,936 KB
testcase_03 AC 27 ms
39,936 KB
testcase_04 AC 27 ms
39,936 KB
testcase_05 AC 27 ms
39,936 KB
testcase_06 AC 27 ms
39,936 KB
testcase_07 AC 28 ms
39,936 KB
testcase_08 AC 27 ms
39,936 KB
testcase_09 AC 27 ms
39,936 KB
testcase_10 AC 27 ms
39,936 KB
testcase_11 AC 27 ms
39,936 KB
testcase_12 AC 28 ms
40,064 KB
testcase_13 AC 28 ms
39,936 KB
testcase_14 AC 27 ms
39,936 KB
testcase_15 AC 29 ms
39,936 KB
testcase_16 AC 27 ms
39,936 KB
testcase_17 AC 27 ms
39,808 KB
testcase_18 AC 27 ms
39,936 KB
testcase_19 AC 27 ms
39,936 KB
testcase_20 AC 27 ms
39,808 KB
testcase_21 AC 27 ms
39,808 KB
testcase_22 AC 27 ms
39,936 KB
testcase_23 AC 27 ms
39,936 KB
testcase_24 AC 194 ms
39,936 KB
testcase_25 AC 193 ms
39,936 KB
testcase_26 AC 193 ms
39,936 KB
testcase_27 AC 191 ms
39,936 KB
testcase_28 AC 192 ms
39,808 KB
testcase_29 MLE -
testcase_30 AC 1,523 ms
39,936 KB
testcase_31 MLE -
testcase_32 AC 1,495 ms
39,936 KB
testcase_33 AC 1,498 ms
39,936 KB
testcase_34 AC 1,492 ms
39,936 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));
vector<vector<bool> > visit(3000, vector<bool>(3000, false));

void dfs(int y, int x) {
  visit[y][x] = true;
  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] && !visit[ny][nx]) {
            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] && !visit[i][j]) {
        ans++;
        dfs(i, j);
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0