leetcode 309 : Best Time to Buy and Sell Stock with Cooldown

来源:互联网 发布:电脑淘宝怎么解除绑定 编辑:程序博客网 时间:2024/05/21 06:49

1、原题如下:

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]

2、解题如下:

class Solution {public:    int maxProfit(vector<int>& prices) {        int buy(INT_MIN),sell(0),p_sell(0),p_buy;        for(auto price:prices)        {            p_buy=buy;            buy=max(p_sell-price,buy);            p_sell=sell;            sell=max(p_buy+price,sell);        }        return sell;    }};
0 0
原创粉丝点击