Leetcode之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.

Note:

  • N will be between 1 and 25.
  • K will be between 0 and 100.
  • The knight always initially starts on the board.

代码:

方法一——超时:

class Solution {
public:
    double knightProbability(int N, int K, int r, int c) {
    if (K == 0)return 1.0;
    vector<vector<int>> g = { {1,-2},{2,-1},{2,1},{1,2},{-1,2},{-2,1},{-2,-1},{-1,-2} };
    queue < vector<int>> q;
    q.push({r,c});
    int valid = 0;
    double all = double(pow(8, K));
    for (int k = 1; k <= K; k++) {
        int len = q.size();
        for (int i = 0; i < len; i++) {
            temp = q.front(); q.pop();
            for (int j = 0; j < 8; j++) {
                int newr = temp[0] + g[j][0];
                int newc = temp[1] + g[j][1];
                if (newr >= 0 && newc >= 0 && newr <N && newc < N) {
                    q.push({ newr,newc });
                }
            }
        }
    }
    return q.size()/all;
}
};

方法二——数组,动归:

class Solution {
public:
double knightProbability(int N, int K, int r, int c) {
    if (K == 0)return 1.0;
    vector<vector<int>> g = { {1,-2},{2,-1},{2,1},{1,2},{-1,2},{-2,1},{-2,-1},{-1,-2} };

    double a[101][25][25] = { 0 };
    double all = double(pow(8, K));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            a[0][i][j] = 1;
        }
    }
    for (int k = 1; k <= K; k++) {
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                for (int n = 0; n < 8; n++) {
                    int oldr = i - g[n][0];
                    int oldc = j - g[n][1];
                    if (oldr >= 0 && oldc >= 0 && oldr < N && oldc < N) {
                        a[k][i][j] += a[k - 1][oldr][oldc];
                    }
                }
            }
        }
    }
    return a[K][r][c] / all;
}
};
class Solution {
public:
    double knightProbability(int n, int k, int row, int column) {
        if(k==0)return 1.0;
    vector<vector<double>> check(n, vector<double>(n,0));
    vector<vector<double>> tmp(n, vector<double>(n,0));
    vector<vector<int>> steps={{1,2},{2,1},{-1,2},{2,-1},{1,-2},{-2,1},{-1,-2},{-2,-1}};
    double total=pow(8,double(k));
    check[row][column]=1;

    double count=0;
    for(int i=0;i<k;i++){
        for(int r=0;r<n;r++){
            for(int c=0;c<n;c++){
                if(check[r][c]==0)continue;
                for(int j=0;j<8;j++){
                    int newr=r+steps[j][0];
                    int newc=c+steps[j][1];
                    if(newr<0||newr>=n||newc<0||newc>=n)continue;
                    tmp[newr][newc]+=check[r][c];
                }
            }
        }
        check.swap(tmp);
        tmp.clear();
        tmp.resize(n, vector<double>(n,0.0));
    }

    for(int r=0;r<n;r++){
        for(int c=0;c<n;c++){
            count+=check[r][c];
        }
    }
    return double(count)/total;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值