JIAKAOBO

LeetCode

venmo
wechat

感谢赞助!

  • ㊗️
  • 大家
  • offer
  • 多多!

Problem

There is a ball in a maze with empty spaces (represented as 0) and walls (represented as 1). The ball can go through the 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 m x n maze, the ball’s start position and the destination, where start = [startrow, startcol] and destination = [destinationrow, destinationcol], return the shortest distance for the ball to stop at the destination. If the ball cannot stop at destination, return -1.

The distance is the number of empty spaces traveled by the ball from the start position (excluded) to the destination (included).

You may assume that the borders of the maze are all walls (see examples).

Example 1:

img

Input: maze = [[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]], start = [0,4], destination = [4,4]
Output: 12
Explanation: One possible way is : left -> down -> left -> down -> right -> down -> right.
The length of the path is 1 + 1 + 3 + 1 + 2 + 2 + 2 = 12.

Example 2:

img

Input: maze = [[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]], start = [0,4], destination = [3,2]
Output: -1
Explanation: There is no way for the ball to stop at the destination. Notice that you can pass through the destination but you cannot stop there.

Example 3:

Input: maze = [[0,0,0,0,0],[1,1,0,0,1],[0,0,0,0,0],[0,1,0,0,1],[0,1,0,0,0]], start = [4,3], destination = [0,1]
Output: -1

Constraints:

  • m == maze.length
  • n == maze[i].length
  • 1 <= m, n <= 100
  • maze[i][j] is 0 or 1.
  • start.length == 2
  • destination.length == 2
  • 0 <= startrow, destinationrow <= m
  • 0 <= startcol, destinationcol <= n
  • Both the ball and the destination exist in an empty space, and they will not be in the same position initially.
  • The maze contains at least 2 empty spaces.

Code

490

DFS

class Solution {
    int[][] dirs = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
    
    public int shortestDistance(int[][] maze, int[] start, int[] destination) {
        int[][] dist = new int[maze.length][maze[0].length];
        
        for(int i = 0; i < maze.length; i++){
           Arrays.fill(dist[i], Integer.MAX_VALUE);
        }
        
        dist[start[0]][start[1]] = 0;
        
        dfs(maze, start, dist);
        
        return dist[destination[0]][destination[1]] == Integer.MAX_VALUE ? 
        -1 : dist[destination[0]][destination[1]];
    }
    
    private void dfs(int[][] maze, int[] start, int[][] dist){
        for(int[] dir : dirs){
            int x = start[0];
            int y = start[1];
            
            int count = 0;
            
            while(x + dir[0] >= 0 && x + dir[0] < maze.length 
                 && y + dir[1] >= 0 && y + dir[1] < maze[0].length
                 && maze[x + dir[0]][y + dir[1]] == 0){
                x += dir[0];
                y += dir[1];
                count++;
            }
            
            if(dist[start[0]][start[1]] + count < dist[x][y]){
                dist[x][y] = dist[start[0]][start[1]] + count;
                dfs(maze, new int[]{x, y}, dist);
            }
        }
    }
}

BFS

class Solution {
    public int shortestDistance(int[][] maze, int[] start, int[] destination) {
        int[][] dirs = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
        int[][] dist = new int[maze.length][maze[0].length];
        
        for(int i = 0; i < maze.length; i++){
           Arrays.fill(dist[i], Integer.MAX_VALUE);
        }
        
        dist[start[0]][start[1]] = 0;
        
        Queue<int[]> queue = new LinkedList<>();
        queue.offer(start);
        
        while(!queue.isEmpty()) {
            int[] curr = queue.poll();
            
            for(int[] dir : dirs){
                int x = curr[0];
                int y = curr[1];

                int count = 0;
                while(x + dir[0] >= 0 && x + dir[0] < maze.length 
                     && y + dir[1] >= 0 && y + dir[1] < maze[0].length
                     && maze[x + dir[0]][y + dir[1]] == 0){
                    x += dir[0];
                    y += dir[1];
                    count++;
                }

                if(dist[curr[0]][curr[1]] + count < dist[x][y]){
                    queue.offer(new int[]{x, y});
                    dist[x][y] = dist[curr[0]][curr[1]] + count;
                }
            }
        }
        
        return dist[destination[0]][destination[1]] == Integer.MAX_VALUE ?
            -1 : dist[destination[0]][destination[1]];
    }
}