309. Best Time to Buy and Sell Stock with Cooldown

来源:互联网 发布:知乎 印度自大 编辑:程序博客网 时间:2024/05/16 00:39

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 = 3transactions = [buy, sell, cooldown, buy, sell]

Credits:
Special thanks to @dietpepsi for adding this problem and creating all test cases.

Subscribe to see which companies asked this question

public class Solution {    public int maxProfit(int[] prices) {         int sell = 0, prev_sell = 0, buy = Integer.MIN_VALUE, prev_buy;        for (int price : prices) {        prev_buy = buy;        buy = Math.max(prev_sell - price, prev_buy);        prev_sell = sell;        sell = Math.max(prev_buy + price, prev_sell);    }    return sell;}}

0 0
原创粉丝点击