688. Knight Probability in Chessboard
Problem description:
On an NxN chessboard, a knight starts at the r-th row and c-th column and attempts to make exactly K moves. The rows and columns are 0 indexed, so the top-left square is (0, 0), and the bottom-right square is (N-1, N-1).
A chess knight has 8 possible moves it can make, as illustrated below. Each move is two squares in a cardinal direction, then one square in an orthogonal direction.
Each time the knight is to move, it chooses one of eight possible moves uniformly at random (even if the piece would go off the chessboard) and moves there.
The knight continues moving until it has made exactly K moves or has moved off the chessboard. Return the probability that the knight remains on the board after it has stopped moving.
1 | Example: |
Note:
N will be between 1 and 25.
K will be between 0 and 100.
The knight always initially starts on the board.
Solution:
First of all, the probability of staying in the board after k
turns is $something/8^k$
We create a 2D dp board to calculate the times that knight can move to position[i][j]
.
The idea is to think of it as 2D dp, but do the transfer multiple times.
1 | class Solution { |
time complexity: $O(kn^2)$
space complexity: $O(n^2)$
reference: