Best Time to Buy and Sell Stock III

本文介绍了一种使用动态规划法解决股票交易最大收益问题的方法,该方法允许进行最多两次交易,并详细介绍了算法的具体实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、问题描述

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 at most two transactions.

二、思路

用一个数组表示股票每天的价格,数组的第i个数表示股票在第i天的价格。最多交易两次,手上最多只能持有一支股票,求最大收益。

分析:动态规划法。以第i天为分界线,计算第i天之前进行一次交易的最大收益preProfit[i],和第i天之后进行一次交易的最大收益postProfit[i],最后遍历一遍,max{preProfit[i] + postProfit[i]} (0≤i≤n-1)就是最大收益。第i天之前和第i天之后进行一次的最大收益求法同Best Time to Buy and Sell Stock I

三、代码

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        if(prices.size() < 2) 
            return 0;
        int n = prices.size();
        vector<int> preProfit(n,0);
        vector<int> postProfit(n,0);
        int pre_profit = prices[0];
        for(int i = 1; i < n; ++i){
            pre_profit = min(pre_profit, prices[i]);
            preProfit[i] = max(preProfit[i - 1], prices[i] - pre_profit);
        }
        int post_profit = prices[n - 1];
        for(int i = n -2; i >= 0; --i){
            post_profit = max(post_profit, prices[i]);
            postProfit[i] = max(postProfit[i + 1], post_profit - prices[i]);
        }
        int max_p = 0;
        for(int i = 0; i < n; ++i)
            max_p = max(max_p, preProfit[i] + postProfit[i]);
        return max_p;
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

fullstack_lth

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值