acwing 1097 池塘计数 ( Flood Fill 模型)

题面

在这里插入图片描述

题解(Flood Fill 模型)

在这里插入图片描述

本题是八联通形式,我们直接枚举每一个格子,如果有水并且是没有被标记过的,那么就开始做Flood Fill ,将所有联通的水源标记,联通的数量+1,

代码

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<algorithm>

using namespace std;
typedef pair<int, int> PII;
const int N = 1010;

int n, m;
char g[N][N];
PII q[N * N];
bool st[N][N];

void bfs(int sx, int sy) {
    st[sx][sy] = true;
    int hh = 0, tt = -1;
    q[++tt] = {sx, sy};
    while (hh <= tt) {
        auto t = q[hh++];
        int x = t.first, y = t.second;
        //枚举8联通,中间的忽略
        for (int i = x - 1; i <= x + 1; i++) {
            for (int j = y - 1; j <= y + 1; j++) {
                if (i == x && j == y) continue;
                if (i < 0 || i > n - 1 || j < 0 || j > m - 1) continue;
                if (g[i][j] == '.' || st[i][j]) continue;
                q[++tt] = {i, j};
                st[i][j] = true;
            }
        }
    }

}

int main() {

    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    cin >> n >> m;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            cin >> g[i][j];
        }
    }

    int res = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            if (g[i][j] == 'W' && !st[i][j]) {
                bfs(i, j);
                res++;
            }
        }
    }

    cout << res << endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值