题解 | #迷宫问题#

迷宫问题

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

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {

    // 存储所有的潜在路径,本题目前只有1个路径
    static ArrayList<LinkedList<int[]>> result = new ArrayList<>();
    static LinkedList<int[]> paths = new LinkedList<>();

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int rowSize = sc.nextInt();
        int colSize = sc.nextInt();
        int[][] map = new int[rowSize][colSize];
        for (int i = 0; i < rowSize; i++) {
            for (int j = 0; j < colSize; j++) {
                map[i][j] = sc.nextInt();
            }
        }
        helper(map, 0, 0);
        // 默认只有一个解法,result取第一个即可
        for (int[] path : result.get(0)) {
            System.out.println("(" + path[0] + "," + path[1] + ")");
        }
    }

    private static void helper(int[][] map, int x, int y) {
        int rowSize = map.length;
        int colSize = map[0].length;

        // 越界 or 碰壁 return
        if (x < 0 || x >= rowSize || y < 0 || y >= colSize || map[x][y] == 1) {
            return;
        }

        if (x == rowSize - 1 && y == colSize - 1) {
            // 注意加上末尾节点
            paths.add(new int[]{x, y});
            // 注意要生成一个新的path list,否则回溯会把这个清空
            result.add(new LinkedList<>(paths));
        } else {
            // 污染思想,上下左右
            map[x][y] = 1;
            paths.add(new int[]{x, y});
            helper(map, x + 1, y);
            helper(map, x - 1, y);
            helper(map, x, y + 1);
            helper(map, x, y - 1);
            // 回溯
            map[x][y] = 0;
            paths.removeLast();
        }
    }
}
#华为机考##华为#
全部评论

相关推荐

04-02 10:09
门头沟学院 Java
用微笑面对困难:这里面问题还是很多的,我也不清楚为啥大家会感觉没啥问题。首先就是全栈开发实习9个月的内容都没有java实习生的内容多,1整个技术栈没看出太核心和难点的内容,感觉好像被拉过去打杂了,而且全栈基本上很容易被毙。里面能问的bug是在太多了比如L:继承 BaseMapper 可直接使用内置方法’。请问你的 BaseMapper 是如何扫描实体类注解如果瞬时产生 100 个上传任务,MySQL 的索引设计是否会有瓶颈?你做过分库分表或者索引优化吗?全栈的内容可以针对动态难点去搞,技能特长写在下面吧,你写了这么多技能,项目和实习体现了多少?你可以在项目里多做文章然后把这个放下去,从大致来看实习不算太水,有含金量你也要写上内容针对哨兵里面的节点变化能问出一万个问题,这个很容易就爆了。
提前批简历挂麻了怎么办
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务