Class Solution
-
- All Implemented Interfaces:
public final class Solution909 - Snakes and Ladders.
Medium
You are given an
n x ninteger matrixboardwhere the cells are labeled from1to <code>n<sup>2</sup></code> in a Boustrophedon style starting from the bottom left of the board (i.e.board[n - 1][0]) and alternating direction each row.You start on square
1of the board. In each move, starting from squarecurr, do the following:Choose a destination square
nextwith a label in the range <code>curr + 1, min(curr + 6, n<sup>2</sup>)</code>.If
nexthas a snake or ladder, you must move to the destination of that snake or ladder. Otherwise, you move tonext.The game ends when you reach the square <code>n<sup>2</sup></code>.
A board square on row
rand columnchas a snake or ladder ifboard[r][c] != -1. The destination of that snake or ladder isboard[r][c]. Squares1and <code>n<sup>2</sup></code> do not have a snake or ladder.Note that you only take a snake or ladder at most once per move. If the destination to a snake or ladder is the start of another snake or ladder, you do not follow the subsequent snake or ladder.
For example, suppose the board is
[[-1,4],[-1,3]], and on the first move, your destination square is2. You follow the ladder to square3, but do not follow the subsequent ladder to4.
Return the least number of moves required to reach the square <code>n<sup>2</sup></code>. If it is not possible to reach the square, return
-1.Example 1:
Input: board = [-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,35,-1,-1,13,-1,-1,-1,-1,-1,-1,-1,-1,15,-1,-1,-1,-1]
Output: 4
Explanation:
In the beginning, you start at square 1 (at row 5, column 0).
You decide to move to square 2 and must take the ladder to square 15.
You then decide to move to square 17 and must take the snake to square 13.
You then decide to move to square 14 and must take the ladder to square 35.
You then decide to move to square 36, ending the game.
This is the lowest possible number of moves to reach the last square, so return 4.
Example 2:
Input: board = [-1,-1,-1,3]
Output: 1
Constraints:
n == board.length == board[i].length2 <= n <= 20grid[i][j]is either-1or in the range <code>1, n<sup>2</sup></code>.The squares labeled
1and <code>n<sup>2</sup></code> do not have any ladders or snakes.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegersnakesAndLadders(Array<IntArray> board)-
-
Method Detail
-
snakesAndLadders
final Integer snakesAndLadders(Array<IntArray> board)
-
-
-
-