鱼C论坛

 找回密码
 立即注册
查看: 1870|回复: 0

[学习笔记] Leetcode 877. Stone Game

[复制链接]
发表于 2020-8-7 09:36:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Seawolf 于 2020-8-7 09:39 编辑
  1. Alex and Lee play a game with piles of stones.  There are an even number of piles arranged in a row, and each pile has a positive integer number of stones piles[i].

  2. The objective of the game is to end with the most stones.  The total number of stones is odd, so there are no ties.

  3. Alex and Lee take turns, with Alex starting first.  Each turn, a player takes the entire pile of stones from either the beginning or the end of the row.  This continues until there are no more piles left, at which point the person with the most stones wins.

  4. Assuming Alex and Lee play optimally, return True if and only if Alex wins the game.



  5. Example 1:

  6. Input: [5,3,4,5]
  7. Output: true
  8. Explanation:
  9. Alex starts first, and can only take the first 5 or the last 5.
  10. Say he takes the first 5, so that the row becomes [3, 4, 5].
  11. If Lee takes 3, then the board is [4, 5], and Alex takes 5 to win with 10 points.
  12. If Lee takes the last 5, then the board is [3, 4], and Alex takes 4 to win with 9 points.
  13. This demonstrated that taking the first 5 was a winning move for Alex, so we return true.


  14. Note:

  15. 2 <= piles.length <= 500
  16. piles.length is even.
  17. 1 <= piles[i] <= 500
  18. sum(piles) is odd.
复制代码


Solution 1:
  1. class Solution:
  2.     def stoneGame(self, piles: List[int]) -> bool:
  3.         n = len(piles)
  4.         dp = [[0 for _ in range(n)] for _ in range(n)]
  5.         for l in range(2, n + 1):
  6.             for i in range(n - l + 1):
  7.                 j = i + l - 1
  8.                 dp[i][j] = max(piles[i] - dp[i + 1][j], piles[j] - dp[i][j - 1])
  9.         return dp[0][n - 1] > 0
复制代码


Solution 2: Alex always win !!
  1. class Solution:
  2.     def stoneGame(self, piles: List[int]) -> bool:
  3.         return True
复制代码

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-23 22:06

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表