-
Notifications
You must be signed in to change notification settings - Fork 0
/
h.cpp
61 lines (56 loc) · 1.34 KB
/
h.cpp
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
#include <iostream>
using namespace std;
const int MAX_N = 100;
const int MAX_M = 100;
int N, M;
char field[MAX_N][MAX_M + 1]; //庭
//現在位置(x,y)
void dfs(int x, int y)
{
//今いるところを、.に置き換える
field[x][y] = '.';
//移動する8方向について,ループする
for (int dx = -1; dx <= 1; dx++)
{
for (int dy = -1; dy <= 1; dy++)
{
//x方向にdx, y方向にdy 移動した場所を(nx,ny)とする
int nx = x + dx, ny = y + dy;
//nxとnyが水たまりかどうか、またfield[nx][ny]が水たまりかどうかを特定する
if (0 <= nx && nx < N && 0 <= nx && ny < M && field[nx][ny] == 'W')
dfs(nx, ny);
}
}
return;
}
void solve()
{
int res = 0;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < M; j++)
{
if (field[i][j] == 'W')
{
//Wが残っているなら、そこからdfsを始める
dfs(i, j);
res++;
//cout << res << endl;
}
}
}
//cout << res << endl;
}
int main()
{
cin >> N >> M;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < M; j++)
{
cin >> field[i][j];
}
}
solve();
return 0;
}