結果

問題 No.697 池の数はいくつか
ユーザー parsee1053parsee1053
提出日時 2021-01-01 18:06:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,684 ms / 6,000 ms
コード長 1,302 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 92,060 KB
実行使用メモリ 38,784 KB
最終ジャッジ日時 2024-11-08 08:49:55
合計ジャッジ時間 14,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 181 ms
7,424 KB
testcase_25 AC 180 ms
7,424 KB
testcase_26 AC 181 ms
7,424 KB
testcase_27 AC 181 ms
7,424 KB
testcase_28 AC 180 ms
7,424 KB
testcase_29 AC 1,684 ms
38,784 KB
testcase_30 AC 1,628 ms
38,528 KB
testcase_31 AC 1,684 ms
38,784 KB
testcase_32 AC 1,632 ms
38,656 KB
testcase_33 AC 1,629 ms
38,528 KB
testcase_34 AC 1,621 ms
38,528 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 main() {
  int h, w;
  cin >> h >> w;
  vector<vector<int> > a(h, vector<int>(w));
  for (int i = 0; i < h; ++i) {
    for (int j = 0; j < w; ++j) {
      cin >> a[i][j];
    }
  }
  queue<pair<int, int> > que;
  int ans = 0;
  for (int i = 0; i < h; ++i) {
    for (int j = 0; j < w; ++j) {
      if (a[i][j] == 1) {
        ans++;
        que.push(make_pair(i, j));
        a[i][j] = 0;
        while (!que.empty()) {
          int y = que.front().first;
          int x = que.front().second;
          que.pop();
          for (int c = -1; c <= 1; ++c) {
            for (int d = -1; d <= 1; ++d) {
              if (c * c + d * d == 1) {
                int ny = y + c, nx = x + d;
                if (0 <= ny && ny < h && 0 <= nx && nx < w) {
                  if (a[ny][nx] == 1) {
                    que.push(make_pair(ny, nx));
                    a[ny][nx] = 0;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0