分析
floodfill
模型,可以使用BFS
或者DFS
解决,可以参考网址:floodfill,这个网址有本题的BFS
和DFS
两种写法。
bfs
// BFS
#include <iostream>
#include <queue>
#include <algorithm>
#define x first
#define y second
using namespace std;
typedef pair<int, int> PII;
const int N = 25;
int n, m; // 行数,列数
char g[N][N];
int dx[] = {-1, 0, 1, 0}, dy[] = {0, 1, 0, -1};
int bfs(int sx, int sy) {
queue<PII> q;
q.push({sx, sy});
g[sx][sy] = '#';
int res = 0;
while (q.size()) {
auto t = q.front();
q.pop();
res++;
for (int i = 0; i < 4; i++) {
int x = t.x + dx[i], y = t.y + dy[i];
if (x < 0 || x >= n || y < 0 || y >= m || g[x][y] != '.') continue;
g[x][y] = '#';
q.push({x, y});
}
}
return res;
}
int main() {
while (cin >> m >> n, n || m) {
for (int i = 0; i < n; i++) cin >> g[i];
int x = 0, y = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++)
if (g[i][j] == '@') {
x = i, y = j;
break;
}
}
cout << bfs(x, y) << endl;
}
}
dfs
// DFS
#include <iostream>
using namespace std;
const int N = 25;
int n, m; // 行数,列数
char g[N][N];
int dx[] = {-1, 0, 1, 0}, dy[] = {0, 1, 0, -1};
int dfs(int x, int y) {
int res = 1;
g[x][y] = '#';
for (int i = 0; i < 4; i++) {
int a = x + dx[i], b = y + dy[i];
if (a >= 0 && a < n && b >= 0 && b < m && g[a][b] == '.')
res += dfs(a, b);
}
return res;
}
int main() {
while (cin >> m >> n, n || m) {
for (int i = 0; i < n; i++) cin >> g[i];
int x = 0, y = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++)
if (g[i][j] == '@') {
x = i, y = j;
break;
}
}
cout << dfs(x, y) << endl;
}
}