結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
20,788 KB
testcase_01 AC 6 ms
20,800 KB
testcase_02 AC 6 ms
20,872 KB
testcase_03 AC 6 ms
20,932 KB
testcase_04 AC 5 ms
20,744 KB
testcase_05 AC 5 ms
20,760 KB
testcase_06 AC 6 ms
20,868 KB
testcase_07 AC 5 ms
20,868 KB
testcase_08 AC 6 ms
20,792 KB
testcase_09 AC 5 ms
20,748 KB
testcase_10 AC 6 ms
20,856 KB
testcase_11 AC 5 ms
20,856 KB
testcase_12 AC 5 ms
20,812 KB
testcase_13 AC 7 ms
20,860 KB
testcase_14 AC 6 ms
20,868 KB
testcase_15 AC 6 ms
20,776 KB
testcase_16 AC 7 ms
20,876 KB
testcase_17 AC 6 ms
20,764 KB
testcase_18 AC 6 ms
20,756 KB
testcase_19 AC 6 ms
20,876 KB
testcase_20 AC 7 ms
20,816 KB
testcase_21 AC 6 ms
20,864 KB
testcase_22 AC 7 ms
20,852 KB
testcase_23 AC 6 ms
20,768 KB
testcase_24 AC 152 ms
20,876 KB
testcase_25 AC 149 ms
20,820 KB
testcase_26 AC 152 ms
20,892 KB
testcase_27 AC 149 ms
20,724 KB
testcase_28 AC 150 ms
20,760 KB
testcase_29 MLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<short> field(9000001, 0);

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

int main(void) {
  int H, W;
  cin >> 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]) {
        dfs(i, j, H, W);
        ans++;
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0