464 Can I Win 我能赢吗

Posted lina2014

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了464 Can I Win 我能赢吗相关的知识,希望对你有一定的参考价值。

详见:https://leetcode.com/problems/can-i-win/description/

C++:

class Solution {
public:
    bool canIWin(int maxChoosableInteger, int desiredTotal)
    {
        if (maxChoosableInteger >= desiredTotal)
        {
            return true;
        }
        if (maxChoosableInteger * (maxChoosableInteger + 1) / 2 < desiredTotal) 
        {
            return false;
        }
        unordered_map<int, bool> m;
        return canWin(maxChoosableInteger, desiredTotal, 0, m);
    }
    bool canWin(int length, int total, int used, unordered_map<int, bool>& m) 
    {
        if (m.count(used))
        {
            return m[used];
        }
        for (int i = 0; i < length; ++i) 
        {
            int cur = (1 << i);
            if ((cur & used) == 0) 
            {
                if (total <= i + 1 || !canWin(length, total - (i + 1), cur | used, m)) 
                {
                    m[used] = true;
                    return true;
                }
            }
        }
        m[used] = false;
        return false;
    }
};

 参考:https://www.cnblogs.com/grandyang/p/6103525.html

以上是关于464 Can I Win 我能赢吗的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] Can I Win 我能赢吗

Leetcode 464.我能赢吗

464我能赢吗

leetcode——464. 我能赢吗

LeetCode 961. 在长度 2N 的数组中找出重复 N 次的元素 / 464. 我能赢吗(博弈) / 675. 为高尔夫比赛砍树

数据结构与算法之深入解析“我能赢吗”的求解思路与算法示例