505 The Maze II

505. The Maze II

1. Question

There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up,down,left or right, but it won't stop rolling until hitting a wall. When the ball stops, it could choose the next direction.

Given the ball's start position, the destination and the maze, find the shortest distance for the ball to stop at the destination. The distance is defined by the number of empty spaces traveled by the ball from the start position (excluded) to the destination (included). If the ball cannot stop at the destination, return -1.

The maze is represented by a binary 2D array. 1 means the wall and 0 means the empty space. You may assume that the borders of the maze are all walls. The start and destination coordinates are represented by row and column indexes.

Example 1

Input 1: a maze represented by a 2D array

0 0 1 0 0
0 0 0 0 0
0 0 0 1 0
1 1 0 1 1
0 0 0 0 0

Input 2: start coordinate (rowStart, colStart) = (0, 4)

Input 3: destination coordinate (rowDest, colDest) = (4, 4)

Output: 12

Explanation: One shortest way is : left -> down -> left -> down ->right ->down ->right.
             The total distance is 1 + 1 + 3 + 1 + 2 + 2 + 2 = 12.
  1. There is only one ball and one destination in the maze.

  2. Both the ball and the destination exist on an empty space, and they will not be at the same position initially.

  3. The given maze does not contain border (like the red rectangle in the example pictures), but you could assume the border of the maze are all walls.

  4. The maze contains at least 2 empty spaces, and both the width and height of the maze won't exceed 100.

2. Implementation

(1) BFS

class Solution {
    class Point {
        int row, col, dist;

        public Point(int row, int col, int dist) {
            this.row = row;
            this.col = col;
            this.dist = dist;
        }
    }

    public int shortestDistance(int[][] maze, int[] start, int[] destination) {
        if (maze == null || maze.length == 0) {
            return 0;
        }

        int m = maze.length, n = maze[0].length;
        int[][] distance = new int[m][n];

        for (int[] dist : distance) {
            Arrays.fill(dist, Integer.MAX_VALUE);
        }

        distance[start[0]][start[1]] = 0;
        Queue<Point> queue = new LinkedList<>();
        queue.add(new Point(start[0], start[1], 0));

        int[][] directions = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}};

        while (!queue.isEmpty()) {
            Point curCell = queue.remove();
            int curRow = curCell.row;
            int curCol = curCell.col;
            int curDist = curCell.dist;

            for (int[] direction : directions) {
                int nextRow = curRow + direction[0];
                int nextCol = curCol + direction[1];
                int dist = curDist + 1;


                while (isValid(maze, nextRow, nextCol)) {
                    nextRow += direction[0];
                    nextCol += direction[1];
                    dist += 1;
                }

                nextRow -= direction[0];
                nextCol -= direction[1];
                --dist;

                if (dist > distance[destination[0]][destination[1]]) {
                    continue;
                }

                if (dist < distance[nextRow][nextCol]) {
                    distance[nextRow][nextCol] = dist;
                    queue.add(new Point(nextRow, nextCol, dist));
                }
            }
        }
        return distance[destination[0]][destination[1]] == Integer.MAX_VALUE ? -1 : distance[destination[0]][destination[1]];
    }

    public boolean isValid(int[][] maze, int row, int col) {
        return row >= 0 && row < maze.length && col >= 0 && col < maze[0].length && maze[row][col] == 0;
    }
}

(2) DFS

class Solution {
    public int shortestDistance(int[][] maze, int[] start, int[] destination) {
        if (maze == null || maze.length == 0 || maze[0].length == 0) {
            return -1;
        }

        int m = maze.length, n = maze[0].length;
        int[][] distance = new int[m][n];

        for (int i = 0; i < m; i++) {
            Arrays.fill(distance[i], Integer.MAX_VALUE);
        } 

        distance[start[0]][start[1]] = 0;

        int[][] directions = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}};

        getDistanceByDFS(start, destination, distance, maze, directions);
        return distance[destination[0]][destination[1]] == Integer.MAX_VALUE ? -1 : distance[destination[0]][destination[1]];
    }

    public void getDistanceByDFS(int[] start, int[] destination, int[][] distance, int[][] maze, int[][] directions) {
        int curRow = start[0], curCol = start[1];

        if (curRow == destination[0] && curCol == destination[1]) {
            return;
        }


        for (int[] direction : directions) {
            int nextRow = curRow + direction[0];
            int nextCol = curCol + direction[1];
            int dist = distance[curRow][curCol] + 1;

            while (isValid(nextRow, nextCol, maze)) {
                nextRow += direction[0];
                nextCol += direction[1];
                dist += 1;
            }

            nextRow -= direction[0];
            nextCol -= direction[1]; 
            dist -= 1;

            if (dist < distance[nextRow][nextCol]) {
                distance[nextRow][nextCol] = dist;
                getDistanceByDFS(new int[] {nextRow, nextCol}, destination, distance, maze, directions);
            }
        }
    }

    public boolean isValid(int row, int col, int[][] maze) {
        return row >= 0 && row < maze.length && col >= 0 && col < maze[0].length && maze[row][col] == 0;
    }
}

3. Time & Space Complexity

BFS: 时间复杂度O(m * n * Max(m,n)),空间复杂度O(mn)

DFS: 时间复杂度O(m * n * Max(m,n)),空间复杂度O(mn)

Last updated