题解 | #迷宫问题#

迷宫问题

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

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

int n, m;
vector<vector<int>> numV;
vector<vector<int>> best_path;
vector<vector<int>> temp_path;

void find(int x, int y) {
    if (x < 0 || x >= n || y < 0 || y >= m || numV[x][y] == 1) return;
    temp_path.push_back({x, y});
    numV[x][y] = 1;
    if (x == n - 1 && y == m - 1) best_path = temp_path;
    find(x - 1, y);
    find(x + 1, y);
    find(x, y - 1);
    find(x, y + 1);
    temp_path.pop_back();
    numV[x][y] = 0;
}

int main() {
    while (cin >> n >> m) {
        numV = vector<vector<int>>(n, vector<int>(m, 0));
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < m; ++j) {
                cin >> numV[i][j];
            }
        }
        find(0, 0);
        for (int i = 0; i < best_path.size(); ++i) {
            cout << '(' << best_path[i][0] << ',' << best_path[i][1] << ')' << endl;
        }
    }
    return 0;
}

全部评论

相关推荐

比亚迪汽车新技术研究院 硬件工程师 总包21左右 硕士
点赞 评论 收藏
分享
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
Noob1024:一笔传三代,人走笔还在
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务