class Solution(object):
def canIWin(self, maxChoosableInteger, desiredTotal):
"""
:type maxChoosableInteger: int
:type desiredTotal: int
:rtype: bool
"""
if sum(range(1,maxChoosableInteger+1))<desiredTotal:
return False
self.memo=dict()
return self.helper(range(1,maxChoosableInteger+1),desiredTotal)
def helper(self,array,desiredTotal):
array_hash=str(array)
#this is memoization, if this subproblem has already been calculated then return directly
if array_hash in self.memo:
return self.memo[array_hash]
#this is the base case of the problem. if it is my turn and the max number in the array is enough to reach the desiredTotal , then i can force a win by simply picking this max number
if array[-1]>=desiredTotal:
self.memo[array_hash]=True
return True
#pick a number, if the opponent can't force a win with the rest, that means i can force a win with picking this number
for i in xrange(len(array)):
if not self.helper(array[:i]+array[i+1:],desiredTotal-array[i]):
self.memo[array_hash]=True
return True
#if there is no number that i can pick to force a win, then this array, total combination is false.
self.memo[array_hash]=False
return False
464. Can I Win
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
相关阅读更多精彩内容
- 2014年09月23日 9695 愿你纵深一跃,不惧深渊。愿风暴降临,你岸堤永固。愿人群声嘶力竭,呼喊你名。愿众人...