0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 23:45:25 +00:00

P1596 [USACO10OCT]Lake Counting S

R52232058
This commit is contained in:
Baoshuo Ren 2021-07-01 07:46:21 +08:00 committed by Baoshuo Ren
parent 7d450ae7c6
commit 4fbd999f3a
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,42 @@
#include <bits/stdc++.h>
using namespace std;
int n, m, ans;
char c;
bool w[105][105];
void dfs(int x, int y) {
if (x < 0 || x >= n || y < 0 || y >= m || !w[x][y]) {
return;
}
w[x][y] = false;
dfs(x - 1, y - 1);
dfs(x - 1, y);
dfs(x - 1, y + 1);
dfs(x, y - 1);
dfs(x, y + 1);
dfs(x + 1, y - 1);
dfs(x + 1, y);
dfs(x + 1, y + 1);
}
int main() {
cin >> n >> m;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> c;
w[i][j] = c == 'W' ? true : false;
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (w[i][j]) {
dfs(i, j);
ans++;
}
}
}
cout << ans << endl;
return 0;
}