[USACO10OCT] Lake Counting S c++ 广搜解法

做为一个(大佬)  新手

广搜怎么能不会呢?

#include <bits/stdc++.h>//万能头
using namespace std;
int n,m,ans;
char a[105][105];
bool vis[105][105];
struct Pos {
    int x, y;
    Pos(int ax=0,int ay=0) {
        x=ax;
        y=ay;
    }
};
void bfs(int x,int y) {
    queue<Pos> q;
    q.push(Pos(x,y));
    while(!q.empty()) {
        Pos now = q.front();
        q.pop();
        int x=now.x,y=now.y;
        if(x<1 || x>n) continue;
        if(y<1 || y>m) continue;
        if(a[x][y]=='.') continue;//遇墙跳过
        if(vis[x][y]) continue;
        vis[x][y]=1;       
        q.push(Pos(x,y-1));//加入八方的洼地
        q.push(Pos(x,y+1));
        q.push(Pos(x-1,y));
        q.push(Pos(x+1,y));
        q.push(Pos(x-1,y-1));
        q.push(Pos(x+1,y+1));
        q.push(Pos(x-1,y+1));
        q.push(Pos(x+1,y-1)); 
    }
}
int main() {
    cin>>n>>m;
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            cin>>a[i][j];
        }
    }
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            if(a[i][j]!='.' && vis[i][j]!=1){
                ans++;
                bfs(i,j);
            }
        }
    }
    cout<<ans;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值