# 490. The Maze
###### tags: `DFS` `BFS`
[leetcode link](https://leetcode.com/problems/the-maze/)
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, determine whether the ball could stop at the destination.
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: true
Explanation: One possible way is : left -> down -> left -> down -> right -> down -> right.
```
**Example 2**:
```
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) = (3, 2)
Output: false
Explanation: There is no way for the ball to stop at the destination.
```
**Solution:**
```java=
class Solution {
private static int[] dx = new int[]{0, 1, 0, -1};
private static int[] dy = new int[]{1, 0, -1, 0};
public boolean hasPath(int[][] maze, int[] start, int[] destination) {
int m = maze.length;
int n = maze[0].length;
boolean[][] visited = new boolean[m][n];
Queue<int[]> q = new LinkedList();
q.offer(start);
while (!q.isEmpty()) {
int[] curr = q.poll();
if (visited[curr[0]][curr[1]]) continue;
visited[curr[0]][curr[1]] = true;
for (int i = 0; i < 4; i++) {
int nx = curr[0];
int ny = curr[1];
while (isInBoundary(m, n, nx, ny) && maze[nx][ny] == 0) {
nx += dx[i];
ny += dy[i];
}
nx -= dx[i];
ny -= dy[i];
if (nx == destination[0] && ny == destination[1]) {
return true;
}
q.offer(new int[] {nx, ny});
}
}
return false;
}
private boolean isInBoundary(int m, int n, int x, int y) {
if (0 > x || x >= m) return false;
if (0 > y || y >= n) return false;
return true;
}
}
```