Grid(bfs模板题)

Grid(bfs模板题)_第1张图片

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

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

上代码:

#include 
#include 
#include 
#include 
#include 
#include 
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 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"<



你可能感兴趣的:(算法)