zoukankan      html  css  js  c++  java
  • [Swift]LeetCode1025. 除数博弈 | Divisor Game

    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
    ➤微信公众号:山青咏芝(shanqingyongzhi)
    ➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
    ➤GitHub地址:https://github.com/strengthen/LeetCode
    ➤原文地址: https://www.cnblogs.com/strengthen/p/10704584.html 
    ➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
    ➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

    Alice and Bob take turns playing a game, with Alice starting first.

    Initially, there is a number N on the chalkboard.  On each player's turn, that player makes a move consisting of:

    • Choosing any x with 0 < x < N and N % x == 0.
    • Replacing the number N on the chalkboard with N - x.

    Also, if a player cannot make a move, they lose the game.

    Return True if and only if Alice wins the game, assuming both players play optimally.

    Example 1:

    Input: 2
    Output: true
    Explanation: Alice chooses 1, and Bob has no more moves.
    

    Example 2:

    Input: 3
    Output: false
    Explanation: Alice chooses 1, Bob chooses 1, and Alice has no more moves.

    Note:

    1. 1 <= N <= 1000

    爱丽丝和鲍勃一起玩游戏,他们轮流行动。爱丽丝先手开局。

    最初,黑板上有一个数字 N 。在每个玩家的回合,玩家需要执行以下操作:

    • 选出任一 x,满足 0 < x < N 且 N % x == 0 。
    • 用 N - x 替换黑板上的数字 N 。

    如果玩家无法执行这些操作,就会输掉游戏。

    只有在爱丽丝在游戏中取得胜利时才返回 True,否则返回 false。假设两个玩家都以最佳状态参与游戏。

    示例 1:

    输入:2
    输出:true
    解释:爱丽丝选择 1,鲍勃无法进行操作。
    

    示例 2:

    输入:3
    输出:false
    解释:爱丽丝选择 1,鲍勃也选择 1,然后爱丽丝无法进行操作。

    提示:

    1. 1 <= N <= 1000

    Runtime: 4 ms
    Memory Usage: 18.8 MB
    1 class Solution {
    2     func divisorGame(_ N: Int) -> Bool {
    3         return N % 2 == 0        
    4     }
    5 }

    Runtime: 4 ms

    Memory Usage: 18.6 MB
     1 class Solution {
     2     func divisorGame(_ N: Int) -> Bool {
     3         var N = N
     4         var alice:Bool = false
     5         for x in 1..<N
     6         {
     7             alice.toggle()
     8             if N % x == 0
     9             {
    10                 N -= x
    11             }     
    12         }
    13         return alice
    14     }
    15 }

    44ms
     1 class Solution {
     2     func divisorGame(_ N: Int) -> Bool {
     3         var dp = [Int:Bool]()
     4         dp[1] = false
     5         dp[2] = true
     6         
     7         var i = 3
     8         while i <= N{
     9             var x = i
    10             var lose = false
    11             dp[i] = false
    12             repeat{
    13                 x -= 1
    14                 if (i%x == 0 && dp[i-x]! == false){
    15                     dp[i] = true
    16                 }
    17             }while x > 1
    18 
    19             i += 1
    20         }
    21         
    22         return dp[N]!
    23     }
    24 }
  • 相关阅读:
    mysql timestamp自动更新 简单
    vim中执行shell命令小结 简单
    Memcached常用资料 简单
    linux bash的命令行操作 简单
    如何调研 简单
    Linux 任务 jobs 简单
    shell相关命令效率 简单
    shell命令学习 简单
    线段树 区间更新(hdu1698) 区间合并(poj3667)
    hdu 1166 敌兵布阵 (树状数组)
  • 原文地址:https://www.cnblogs.com/strengthen/p/10704584.html
Copyright © 2011-2022 走看看