国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

309. Best Time to Buy and Sell Stock with Cooldown -Medium

2019-11-10 19:16:36
字體:
供稿:網(wǎng)友

Question

Say you have an array for which the ith element is the PRice of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times) with the following restrictions:

You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again). After you sell your stock, you cannot buy stock on next day. (ie, cooldown 1 day)

現(xiàn)在給你一個(gè)數(shù)組,第i個(gè)元素代表第i天的股票價(jià)格。設(shè)計(jì)出一個(gè)算法去找到最大的收益。允許多次交易,但是你必須在第二次買股票前賣掉股票,而且當(dāng)你賣掉股票,第二天你不被允許買股票(冷卻時(shí)間)

Example

prices = [1, 2, 3, 0, 2] maxProfit = 3 transactions = [buy, sell, cooldown, buy, sell]

Solution

動(dòng)態(tài)規(guī)劃解。思考問題仍然從如何找到第i天和前一天的最大收益的關(guān)系出發(fā)。我們可以發(fā)現(xiàn)每一天都有三種狀態(tài),即買(buy),賣(sell),不買不賣(rest),那么其實(shí)我們可以分別記錄第i天buy, sell, rest的最大收益記錄下來,然后根據(jù)它們之間的關(guān)系更新。這個(gè)思路完全沒有問題,但是在實(shí)際操作的時(shí)候我們會(huì)發(fā)現(xiàn),rest其實(shí)也要分兩種情況。

第一種是sell后,buy前的rest,因?yàn)閟ell后不能馬上buy,所以如果第i天是rest_before_buy,那么第i - 1天只能是rest_before_buy本身或者sell第二種是buy后,sell前的rest,如果第i天是rest_after_buy,那么第i - 1天只能是rest_after_buy或者buy

所以這兩種rest并不是同一種,因此其實(shí)每一天有四種狀態(tài),即rest_before_buy, buy, rest_after_buysell, sell,關(guān)系如下圖

關(guān)系圖

關(guān)系式為:

buy[i] = rest_before_buy[i - 1] - prices[i]

rest_after_buy[i] = max(buy[i - 1], rest_after_buy[i - 1])

sell[i] = max(buy[i - 1] + prices[i], rest_after_buy[i - 1] + prices[i])

rest_before_buy[i] = max(sell[i - 1], rest_before_buy[i - 1])

初始化為:

buy[0] = -prices[0] # 第一天買進(jìn)花費(fèi)prices[0]

rest_after_buy[0] = -prices[0] # 因?yàn)槭遣毁I不賣,所以和buy[0]相同

sell[0] = - (prices[0] + 1) # 第一天不可能賣的,所以設(shè)一個(gè)非常小的值

rest_before_buy = 0 # 第一天如果不買不賣,花費(fèi)0

代碼

class Solution(object): def maxProfit(self, prices): """ :type prices: List[int] :rtype: int """ if len(prices) == 0: return 0 sell = [0] * len(prices) buy = [0] * len(prices) rest_before_buy = [0] * len(prices) rest_after_buy = [0] * len(prices) # 初始化 buy[0] = - prices[0] sell[0] = - (prices[0] + 1) rest_after_buy[0] = - prices[0] for index_p in range(1, len(prices)): buy[index_p] = rest_before_buy[index_p - 1] - prices[index_p] rest_after_buy[index_p] = max(buy[index_p - 1], rest_after_buy[index_p - 1]) sell[index_p] = max(rest_after_buy[index_p - 1] + prices[index_p], buy[index_p - 1] + prices[index_p]) rest_before_buy[index_p] = max(sell[index_p - 1], rest_before_buy[index_p - 1]) # 因?yàn)樽詈笠惶靊uy或者rest_after_buy(有股票沒賣掉)都不可能利益最大的,所以不需比較 return max(sell[-1], rest_before_buy[-1])
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 东莞市| 西华县| 普定县| 盐城市| 日土县| 博湖县| 温州市| 文安县| 仙游县| 关岭| 太白县| 于田县| 兴仁县| 乌兰县| 永川市| 蛟河市| 陇西县| 吉隆县| 洱源县| 尤溪县| 潼南县| 育儿| 沙坪坝区| 庄河市| 栾川县| 唐海县| 岱山县| 盖州市| 平陆县| 澄城县| 永善县| 峡江县| 青州市| 吉水县| 嘉义县| 横峰县| 安丘市| 舟山市| 任丘市| 河津市| 仁寿县|