【搜索】细胞

本文深入探讨了广度优先搜索(BFS)算法在解决特定类型问题上的应用,通过一个具体的C++实现案例,详细讲解了如何使用队列进行节点遍历,以及如何在二维网格中寻找路径。代码示例清晰地展示了从起始点开始,如何逐层向外扩展搜索范围,直到覆盖所有可达节点的过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

http://icpc.upc.edu.cn/problem.php?cid=1404&pid=19

#include<bits/stdc++.h>
#include<queue>
#include<iostream>
using namespace std;
struct str
{
    int x, y;
};
queue<str>q;
int ans,i,j,d[4][2] = { {0,1},{0,-1},{1,0},{-1,0} },a[1000][1000],m,n;
void bfs()
{
    while (!q.empty())
    {
        int x1 = q.front().x, y1 = q.front().y;
        q.pop();
        for (int i = 0; i < 4; i++)
        {
            int x2 = x1 + d[i][0], y2 = y1 + d[i][1];
            if (x2 >= 1 && y2 >= 1&& x2 <= m && y2 <= n && a[x2][y2] != 0)
            {
                q.push(str{ x2,y2 });
                a[x2][y2] = 0;
            }
        }
    }
}
int main()
{
    scanf("%d%d",&m,&n);
    for (i = 1; i <= m; i++)
        for (j = 1; j <= n; j++)
            scanf("%1d",&a[i][j]);
    for (i = 1; i <= m; i++)
    {
        for (j = 1; j <= n; j++)
        {
            if (!a[i][j])
                continue;
            q.push(str{ i,j });
            ans++;
            a[i][j] =0;
            bfs();
        }
    }
    printf("%d\n",ans);
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值