您的位置:首页 > 其它

Leetcode 算法设计 第十四周

2017-12-05 10:34 225 查看

688. Knight Probability in Chessboard

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.

Example:

Input: 3, 2, 0, 0

Output: 0.0625

Explanation: There are two moves (to (1,2), (2,1)) that will keep the knight on the board.

From each of those positions, there are also two moves that will keep the knight on the board.

The total probability the knight stays on the board is 0.0625.

我的解答

class Solution {
public:
vector<vector<int>> dir={{-2,1}, {-1,2}, {1, 2}, {2,1}, {2,-1}, {1,-2}, {-1,-2}, {-2,-1}};
double knightProbability(int N, int K, int r, int c) {
double dp[K+1]

={0};
for(int i=0;i<=K;i++) {
for(int j=0;j<N;j++) {
for(int m=0;m<N;m++) {
if(i==0) {
dp[0][j][m]=1;
continue;
}
for(int n=0;n<8;n++) {
int x=j-dir
[0], y=m-dir
[1];
if(x>=N||x<0||y>=N||y<0) continue;
dp[i][j][m]+=0.125*dp[i-1][x][y];
}
}
}
}
return dp[K][r][c];
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: