結果

問題 No.697 池の数はいくつか
ユーザー MSKMSK
提出日時 2018-10-03 08:32:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 995 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 357,792 KB
最終ジャッジ日時 2024-05-04 06:15:29
合計ジャッジ時間 9,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

vector<int> dfs(int row, int col, vector<int> field, int H,
                int W) {
  field[row * W + col] = 0;
  if((row - 1 >= 0) && (field[(row - 1) * W + col] == 1)) {
    field = dfs(row - 1, col, field, H, W);
  }
  if((row + 1 < H) && (field[(row + 1) * W + col] == 1)) {
    field = dfs(row + 1, col, field, H, W);
  }
  if((col - 1 >= 0) && (field[row * W + col - 1] == 1)) {
    field = dfs(row, col - 1, field, H, W);
  }
  if((col + 1 < W) && (field[row * W + col + 1] == 1)) {
    field = dfs(row, col + 1, field, H, W);
  }
  return field;
}

int main(void) {
  int H, W;
  cin >> H >> W;
  vector<int> field(H * W);
  for(int i = 0; i < H * W; i++) {
    cin >> field[i];
  }
  int ans = 0;
  for(int i = 0; i < H; i++) {
    for(int j = 0; j < W; j++) {
      if(1 == field[i * W + j]) {
        field = dfs(i, j, field, H, W);
        ans++;
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0