結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 162 ms
7,424 KB
testcase_25 AC 162 ms
7,552 KB
testcase_26 AC 160 ms
7,680 KB
testcase_27 AC 158 ms
7,552 KB
testcase_28 AC 162 ms
7,680 KB
testcase_29 AC 1,506 ms
38,912 KB
testcase_30 AC 1,433 ms
38,528 KB
testcase_31 AC 1,492 ms
38,784 KB
testcase_32 AC 1,441 ms
38,656 KB
testcase_33 AC 1,413 ms
38,528 KB
testcase_34 AC 1,439 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