[LintCode] 394. Coins in a Line_ Medium tag:Dynamic Programming_博弈

Posted johnsonxiong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LintCode] 394. Coins in a Line_ Medium tag:Dynamic Programming_博弈相关的知识,希望对你有一定的参考价值。

Description

There are n coins in a line. Two players take turns to take one or two coins from right side until there are no more coins left. The player who take the last coin wins.

Could you please decide the first player will win or lose?

Example

n = 1, return true.

n = 2, return true.

n = 3, return false.

n = 4, return true.

n = 5, return true.

Challenge

O(n) time and O(1) memory

 

这个题目是属于经典的博弈类Dynamic Programming 的入门题目, 为了便于思考, 我们只考虑一个选手的status, 例如我们只考虑first player的状态, 然后 A[i] 表明到first player下时还

剩下i个coins, 找到动态关系式:    A[i] = (A[i-2] and A[i-3]) or (A[i-3] and A[i-4])    第一个是first player只选一个, 第二个是first player选2个之后由second player选了之后的到first player

下了的状态, 所以将second player的状态放入到了first player的状态当中. 此时需要注意的是初始化dp数组时, 要初始化0, 1,2, 3, 4

 

1. Constraints

1) n >= 0 integer

 

2. ideas

DP    T: O(n)   S; O(1)   optimal by rolling array

 

3. code

1) S: O(n)

class Solution:
    def coinsInLine(self, n):
        ans = [True]*5
        ans[0] = ans[3] = False
        if n < 5: return ans[n]
        ans = ans + [None]*(n-4)
        for i in range(5, n+1):
            ans[i] = (ans[i-2] and ans[i-3]) or (ans[i-3] and ans[i-4])
        return ans[n]

 

2) S: O(1)

 

class Solution:
    def coinsInLine(self, n):
        ans = [True] *5
        ans[0] = ans[3] = False
        if n < 5: return ans[n]
        for i in range(5, n + 1):
            ans[i%5] = (ans[i%5-2] and ans[i%5-3]) or (ans[i%5-3] and ans[i%5-4])
        return ans[n%5]

 

3) 666

class Solution:
    def coinsInLine(self, n):
        return not (n%3 == 0)

 

4. Test cases

1) 0-6

 

以上是关于[LintCode] 394. Coins in a Line_ Medium tag:Dynamic Programming_博弈的主要内容,如果未能解决你的问题,请参考以下文章

[LintCode] Coins in a Line II

[LintCode] Coins in a Line 一条线上的硬币

[LintCode] 395. Coins in a Line 2_Medium tag: Dynamic Programming, 博弈

[LeetCode] 877. Stone Game == [LintCode] 396. Coins in a Line 3_hard tag: 区间Dynamic Programming, 博弈(

Coins in a Line

Coins in a Line II