Wednesday, May 4, 2016

LeetCode Q309: Best Time to Bug and Sell Stock with Cooldown (hard)

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)
Example:
prices = [1, 2, 3, 0, 2]
maxProfit = 3
transactions = [buy, sell, cooldown, buy, sell]


Solution:
There are many good solutions and explanations on LeetCode forum. I find the thinking process of this post better work for me, and my solution is similar to it.

No comments:

Post a Comment