Knight Probability in Chessboard
Last updated
Last updated
On anN
xN
chessboard, a knight starts at ther
-th row andc
-th column and attempts to make exactlyK
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 exactlyK
moves or has moved off the chessboard. Return the probability that the knight remains on the board after it has stopped moving.
Example:
Note:
N
will be between 1 and 25.
K
will be between 0 and 100.
The knight always initially starts on the board.
分析
8个方向界内的1相加,总数/8**k
DP: python无法三维数组??? 所以k loop内每次新建一个arr和旧arr交替。2个初始值不同
用DFS的memorization,一定记得key 是k+i+j,不能只有i,j。错很久