Day4(难度:简单)

在这里插入图片描述
题目分析:
在这里插入图片描述
代码:

#include<bits/stdc++.h>
#include<iostream>
#include<windows.h>
#define x first
#define y second
using namespace std;
typedef pair<int,int> PII;
char arr[30][30] ;
int dx[] = {-1,0,1,0};
int dy[] = {0,1,0,-1};
int n,m;
int bfs(int sx,int sy){
    queue<PII> q;
    q.push({sx,sy});
    arr[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];
            int y = t.y + dy[i];
            if(x<1||x>m||y<1||y>n||arr[x][y] != '.')
                continue;
            arr[x][y] = '#';
            q.push({x,y});
        }
    }
    return res;
}

int dfs(int sx,int sy){
    arr[sx][sy] = '#';
    int res = 1;
    for(int i = 0;i < 4;i++){
        int a = sx + dx[i];
        int b = sy + dy[i];
        if(a>=1)
            if(a<=m)
                if(b>=1)
                    if(b<=n)
                        if(arr[a][b] == '.')
                            res += dfs(a,b);
    }

    return res;
}
int main(){
    int x,y;

    while(cin>>n>>m,n||m){
    for(int i=1;i<=m;i++)
        for(int j=1;j<=n;j++){
            cin>>arr[i][j];
            if(arr[i][j]=='@'){
                x = i;
                y = j;
            }
        }
        //cout<<bfs(x,y)<<endl;
        cout<<dfs(x,y)<<endl;
    }
    
    system("pause");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值