aboutsummaryrefslogtreecommitdiff
path: root/store/works/solutions/acwing/1233.cpp
blob: 117b2fb641866f7b7794fed702f313e9f2d5d5e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <iostream>
#include <utility>

const int M = 1010;

int N;
char map[M][M];
bool visited[M][M];

int not_sink_count;

const std::pair<int, int> moves[]{{1, 0}, {0, 1}, {-1, 0}, {0, -1}};

void dfs(int r, int c) {
  if (visited[r][c])
    return;
  if (map[r][c] != '#')
    return;

  visited[r][c] = true;

  bool sink = false;

  for (const auto &move : moves) {
    if (map[r + move.first][c + move.second] == '.') {
      sink = true;
      break;
    }
  }

  if (!sink) {
    not_sink_count++;
  }

  for (const auto &move : moves) {
    dfs(r + move.first, c + move.second);
  }
}

int main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(nullptr);

  std::cin >> N;

  for (int i = 1; i <= N; i++) {
    for (int j = 1; j <= N; j++) {
      std::cin >> map[i][j];
    }
  }

  int result = 0;

  for (int i = 1; i <= N; i++) {
    for (int j = 1; j <= N; j++) {
      if (map[i][j] == '#' && !visited[i][j]) {
        dfs(i, j);
        if (not_sink_count == 0) {
          result++;
        }
        not_sink_count = 0;
      }
    }
  }

  std::cout << result;

  return 0;
}