题解 | #迷宫问题#

迷宫问题

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

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String[] nm = scan.nextLine().split(" ");
        int n = Integer.valueOf(nm[0]);
        int m = Integer.valueOf(nm[1]);
        int[][] matrix = new int[n][m];
        for (int i = 0; i < n; i++) {
            String[] currRow = scan.nextLine().split(" ");
            for (int j = 0; j < m; j++) {
                matrix[i][j] = Integer.valueOf(currRow[j]);
            }
        }
        ArrayList<int[]> ans = new ArrayList<>();
        process(0, 0, n, m, ans, matrix);
        for (int[] tmp : ans) {
            System.out.println("(" + tmp[0] + "," + tmp[1] + ")");
        }
    }
    public static boolean process(int cx, int cy, int n, int m, ArrayList<int[]> ans, int[][] matrix) {
        if (cx < 0 || cx >= n || cy < 0 || cy >= m || matrix[cx][cy] == 1) {
            return false;
        }
        if (cx == n - 1 && cy == m - 1) {
            int[] tmp = new int[]{cx, cy};
            ans.add(tmp);
            return true;
        }
        matrix[cx][cy] = 1;
        int[] tmp = new int[]{cx, cy};
        ans.add(tmp);
        if (process(cx - 1, cy, n, m, ans, matrix)) {
            return true;
        }
        if (process(cx + 1, cy, n, m, ans, matrix)) {
            return true;
        }
        if (process(cx, cy - 1, n, m, ans, matrix)) {
            return true;
        }
        if (process(cx, cy + 1, n, m, ans, matrix)) {
            return true;
        }
        matrix[cx][cy] = 0;
        ans.remove(ans.size() - 1);
        return false;
    }
}
全部评论
该牛油正在参与牛客写题解薅羊毛的活动,牛币,周边,京东卡超多奖品放送,活动进入倒计时!快来捡漏啦https://www.nowcoder.com/discuss/888949?source_id=profile_create_nctrack&channel=-1
点赞 回复 分享
发布于 2022-04-20 16:57

相关推荐

10-17 12:16
同济大学 Java
7182oat:快快放弃了然后发给我,然后让我也泡他七天最后再拒掉,狠狠羞辱他一把😋
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务