[Leetcode] 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.

Note:

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

    思路

    我们定义一个映射map<pos, prob> status,将位置映射到其出现的概率上。对于每个pos而言,它可以到达8个不同的位置。而到这8个位置的概率都是status[pos] * 1 / 8。我们分别计算这8个位置,如果发现它还在棋盘的范围之内,就将其概率增加status[pos] * 1 / 8。当行走K步之后,我们将status中的所有概率加起来,即为knight最后留在棋盘上的概率。

    在实现中,为了避免开辟过大的空间以及频繁的赋值操作引起效率降低,我们定义status_even和status_odd,用来交替更新数据。这样算法的时间复杂度就是O(KN^2),空间复杂度可以降低到O(N^2)。

    代码

    class Solution {
    public:
        double knightProbability(int N, int K, int r, int c) {
            map<vector<int>, double> status_even, status_odd;
            status_even[{r, c}] = 1.0;
            for (int i = 0; i < K; ++i) {
                if (i % 2 == 0) {
                    status_odd.clear();
                    for (auto it = status_even.begin(); it != status_even.end(); ++it) {
                        movePositions(N, it->first[0], it->first[1], it->second, status_odd);
                    }
                }
                else {
                    status_even.clear();
                    for (auto it = status_odd.begin(); it != status_odd.end(); ++it) {
                        movePositions(N, it->first[0], it->first[1], it->second, status_even);
                    }
                }
            }
            map<vector<int>, double>::iterator begin = K % 2 == 0 ? status_even.begin() : status_odd.begin();
            map<vector<int>, double>::iterator end = K % 2 == 0 ? status_even.end() : status_odd.end();
            double ret = 0;
            for (auto it = begin; it != end; ++it) {
                ret += it->second;
            }
            return ret;
        }
    private:
        void movePositions(int N, int r, int c, double value, map<vector<int>, double> &positions) {
            vector<vector<int>> next_pos;
            if (r + 2 < N) {
                if (c + 1 < N) {
                    next_pos.push_back({r + 2, c + 1});
                }
                if (c - 1 >= 0) {
                    next_pos.push_back({r + 2, c - 1});
                }
            }
            if (r - 2 >= 0) {
                if (c + 1 < N) {
                    next_pos.push_back({r - 2, c + 1});
                }
                if (c - 1 >= 0) {
                    next_pos.push_back({r - 2, c - 1});
                }
            }
            if (r + 1 < N) {
                if (c + 2 < N) {
                    next_pos.push_back({r + 1, c + 2});
                }
                if (c - 2 >= 0) {
                    next_pos.push_back({r + 1, c - 2});
                }
            }
            if (r - 1 >= 0) {
                if (c + 2 < N) {
                    next_pos.push_back({r - 1, c + 2});
                }
                if (c - 2 >= 0) {
                    next_pos.push_back({r - 1, c - 2});
                }
            }
            for (auto &p : next_pos) {
                positions[p] += value / 8.0;
            }
        }
    };

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值