結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
20,820 KB
testcase_01 AC 8 ms
20,844 KB
testcase_02 AC 7 ms
20,832 KB
testcase_03 AC 8 ms
20,816 KB
testcase_04 AC 7 ms
20,884 KB
testcase_05 AC 7 ms
20,936 KB
testcase_06 AC 7 ms
20,788 KB
testcase_07 AC 7 ms
20,732 KB
testcase_08 AC 7 ms
20,904 KB
testcase_09 AC 8 ms
20,832 KB
testcase_10 AC 8 ms
20,936 KB
testcase_11 AC 8 ms
20,928 KB
testcase_12 AC 7 ms
20,868 KB
testcase_13 AC 8 ms
20,788 KB
testcase_14 AC 7 ms
20,796 KB
testcase_15 AC 7 ms
20,764 KB
testcase_16 AC 7 ms
20,824 KB
testcase_17 AC 7 ms
20,908 KB
testcase_18 AC 7 ms
20,728 KB
testcase_19 AC 7 ms
20,764 KB
testcase_20 AC 7 ms
20,836 KB
testcase_21 AC 7 ms
20,796 KB
testcase_22 AC 7 ms
20,772 KB
testcase_23 AC 7 ms
20,856 KB
testcase_24 AC 165 ms
20,812 KB
testcase_25 AC 168 ms
20,904 KB
testcase_26 AC 169 ms
20,788 KB
testcase_27 AC 167 ms
20,892 KB
testcase_28 AC 165 ms
20,832 KB
testcase_29 MLE -
testcase_30 AC 1,459 ms
20,852 KB
testcase_31 MLE -
testcase_32 AC 1,455 ms
20,848 KB
testcase_33 AC 1,420 ms
20,796 KB
testcase_34 AC 1,413 ms
20,824 KB
権限があれば一括ダウンロードができます

ソースコード

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