[leetcode] 688. Knight Probability in Chessboard

441 篇文章 0 订阅
284 篇文章 0 订阅

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.
knight
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.

分析

题目的意思是:有一个骑士在棋盘上走,问停下来后还留在棋盘上的概率。

  • 用记忆化数组,这里我们用三维的数组,初始化为0。在递归函数中,如果k为0了,说明已经走了K步,返回 1。如果memo[K][r][c]不为0,说明这种情况之前已经计算过,直接返回。然后遍历8种走法,计算新的位置,如果不在棋盘上就跳过;然后更新memo[K][r][c],使其加上对新位置调用递归的返回值,注意此时带入k-1和新的位置,退出循环后返回memo[k][r][c]即可。

代码

class Solution {
private:
vector<vector<int>> dirs{{-1,-2},{-2,-1},{-2,1},{-1,2},{1,2},{2,1},{2,-1},{1,-2}};
    
public:
    double knightProbability(int N, int K, int r, int c) {
        vector<vector<vector<double>>> memo(K+1,vector<vector<double>>(N,vector<double>(N,0.0)));
        return solve(memo,N,K,r,c)/pow(8, K);
    }
    
    double solve(vector<vector<vector<double>>>&memo,int N,int K,int r,int c){
        if(K==0){
            return 1.0;
        }
        if(memo[K][r][c]!=0.0){
            return memo[K][r][c];
        }
        for(auto dir:dirs){
            int x=r+dir[0];
            int y=c+dir[1];
            if(x<0||x>=N||y<0||y>=N){
                continue;
            }
            memo[K][r][c]+=solve(memo,N,K-1,x,y);
        }
        return memo[K][r][c];
    }
};

参考文献

[LeetCode] Knight Probability in Chessboard 棋盘上骑士的可能性

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值