码迷,mamicode.com
首页 > 其他好文 > 详细

动态规划_leetcode121(好难,双状态)

时间:2019-03-17 14:10:22      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:col   type   状态   not   for   obj   pre   etc   return   

class Solution(object):
def maxProfit(self, prices):
"""
:type prices: List[int]
:rtype: int
"""

if not prices:
return 0


buy = -prices[0]

sell = 0


for i in range(1,len(prices)):
buy = max(buy ,-prices[i])
sell = max (sell,prices[i] + buy)

return sell

动态规划_leetcode121(好难,双状态)

标签:col   type   状态   not   for   obj   pre   etc   return   

原文地址:https://www.cnblogs.com/lux-ace/p/10546508.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!