题解 | #迷宫问题#

查找输入整数二进制中1的个数

http://www.nowcoder.com/practice/1b46eb4cf3fa49b9965ac3c2c1caf5ad

#include <iostream>
#include <vector>
using namespace std;
int M,N;//行列
vector<vector<int>> maze;//迷宫矩阵
vector<vector<int>> path_best;//迷宫矩阵
vector<vector<int>> path_temp;//中间矩阵
void bestpath(int i,int j)
{
    //每次走过的点标1
    maze[i][j]=1;
    path_temp.push_back({i,j});//当前节点push进

    //找到最优路径,需要比较,判断结束位置
    if(i==N-1 && j==M-1)//结束
    {
        if(path_temp.size() < path_best.size() || path_best.empty())//比较temp <best或者为空
            path_best=path_temp;
    }
    //走路  回溯
    //上
    if(i-1>=0&&maze[i-1][j]==0)
        bestpath(i-1,j);
    //下
    if(i+1<=N-1&& maze[i+1][j]==0)
        bestpath(i+1,j);
    //左
     if(j-1>=0 && maze[i][j-1]==0 )
        bestpath(i,j-1);
    //右
      if( j+1<=M-1 && maze[i][j+1]==0)
          bestpath(i, j+1);
    //恢复现场
    maze[i][j]=0;

    path_temp.pop_back();
}

int main()
{
    while(cin>>N>>M)
    {
        maze=vector<vector<int>>(N,vector<int>(M,0));
        path_best.clear();
        path_temp.clear();
        //输入迷宫
        for(int i=0;i<N;i++)
        {
            for(int j=0;j<M; j++)
            {
                cin>>maze[i][j];
            }
        }

        //回溯法找路径
        bestpath(0, 0);
        for(auto x:path_best)
            cout<<'('<<x[0]<<','<<x[1]<<')'<<endl;
    }
    return 0;
}
全部评论

相关推荐

点赞 评论 收藏
分享
沉淀一会:1.同学你面试评价不错,概率很大,请耐心等待; 2.你的排名比较靠前,不要担心,耐心等待; 3.问题不大,正在审批,不要着急签其他公司,等等我们! 4.预计9月中下旬,安心过节; 5.下周会有结果,请耐心等待下; 6.可能国庆节前后,一有结果我马上通知你; 7.预计10月中旬,再坚持一下; 8.正在走流程,就这两天了; 9.同学,结果我也不知道,你如果查到了也告诉我一声; 10.同学你出线不明朗,建议签其他公司保底! 11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务