Grid(bfs模板题)

题目大意是从左上角跳到右下角(如果能跳到)最少要多少步,其中每个格子都有一个数字代表跳的格数(必须按照这个格数跳),且每步不管跳多少格都算一步。

这道题直接套bfs的模板就可以AC了。

上代码:

#include <iostream>
#include <cstring>
#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <queue>
using namespace std;

const int maxn = 1000 + 5;
int m,n;
int ans;
char p[maxn][maxn];
bool vst[maxn][maxn];
int dir[4][2] = {0,1,0,-1,1,0,-1,0};
struct State{
    int x,y;
    int step;
}a[maxn];
bool check(State s){
    if(!vst[s.x][s.y] && s.x >=0 && s.x < m && s.y >= 0 && s.y < n)
        return 1;
    else
        return 0;
}
void bfs(State st){
    queue<State> q;
    State now,next;
    st.step = 0;
    q.push(st);
    vst[st.x][st.y] = 1;
    while(!q.empty()){
        now = q.front();
        if(now.x == m-1 && now.y == n-1){
            ans = now.step;
            return;
        }
        for(int i = 0;i < 4;i++){
            next.x = now.x + dir[i][0]*(p[now.x][now.y] - '0');
            next.y = now.y + dir[i][1]*(p[now.x][now.y] - '0');
            next.step = now.step + 1;
            if(check(next)){
                q.push(next);
                vst[next.x][next.y] = 1;
            }
        }
        q.pop();
    }
    return;
}
int main()
{
    while(cin>>m>>n){
        int t = 0;
        for(int i = 0;i < m;i++)
            for(int j = 0;j < n;j++)
                cin>>p[i][j];

        bfs(a[0]);
        if(ans == 0) cout<<"IMPOSSIBLE"<<endl;
        else cout<<ans<<endl;
        ans = 0;
    }
    return 0;
}



  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值