题解 | #走迷宫#

走迷宫

https://www.nowcoder.com/practice/e88b41dc6e764b2893bc4221777ffe64

#include <iostream>
#include <queue>
#include <vector>
#include <cstring>
using namespace std;

const int N = 1010;
char mpt[N][N];
int vis[N][N];
int dir[4][2] = {{0, 1}, {1, 0}, {-1, 0}, {0, -1}};
int h, w;
int sx, sy, ex, ey;

struct Node {
    int x, y, dist;
};

int bfs() {
    queue<Node> q;
    q.push({sx, sy, 0});
    vis[sx][sy] = 1;

    while (!q.empty()) {
        Node now = q.front();
        q.pop();

        if (now.x == ex && now.y == ey) {
            return now.dist;
        }

        for (int i = 0; i < 4; i++) {
            int nx = now.x + dir[i][0];
            int ny = now.y + dir[i][1];
            if (nx > 0 && nx <= h && ny > 0 && ny <= w && vis[nx][ny]==0 && mpt[nx][ny] == '.') {
                vis[nx][ny] = 1;
                q.push({nx, ny, now.dist + 1});
            }
        }
    }

    return -1; // 如果队列清空还没有找到,返回-1
}

int main() {
    cin >> h >> w;
    cin >> sx >> sy >> ex >> ey;
    for (int i = 1; i <= h; i++) {
        for (int j = 1; j <= w; j++) {
            cin >> mpt[i][j];
        }
    }

    memset(vis, 0, sizeof(vis));
    int ans = bfs();
    cout << ans << endl;
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
希望各位大哥分享一下自己的看法,对于机器人行业确实不太了解
绝顶但不聪明:如果是机器人相关岗位,优先优必选(专门***器人的),其他岗位选小米
投递小米集团等公司10个岗位 > 牛客解忧铺 牛客在线求职答疑中心
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务