LeetCode_Array_122. Best Time to Buy and Sell Stock II买股票的最佳时机(C++)

目录

1,题目描述

英文描述

中文描述

2,解题思路

算法

3,AC代码

4,解题过程


1,题目描述

英文描述

Say you have an array prices 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 (i.e., buy one and sell one share of the stock multiple times).

Note: You may not engage in multiple transactions at the same time (i.e., you must sell the stock before you buy again).

Example 1:

Input: [7,1,5,3,6,4]
Output: 7
Explanation: Buy on day 2 (price = 1) and sell on day 3 (price = 5), profit = 5-1 = 4.
             Then buy on day 4 (price = 3) and sell on day 5 (price = 6), profit = 6-3 = 3.
Example 2:

Input: [1,2,3,4,5]
Output: 4
Explanation: Buy on day 1 (price = 1) and sell on day 5 (price = 5), profit = 5-1 = 4.
             Note that you cannot buy on day 1, buy on day 2 and sell them later, as you are
             engaging multiple transactions at the same time. You must sell before buying again.
Example 3:

Input: [7,6,4,3,1]
Output: 0
Explanation: In this case, no transaction is done, i.e. max profit = 0.

中文描述

给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。

设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。

注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。

 

示例 1:

输入: [7,1,5,3,6,4]
输出: 7
解释: 在第 2 天(股票价格 = 1)的时候买入,在第 3 天(股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5-1 = 4 。
     随后,在第 4 天(股票价格 = 3)的时候买入,在第 5 天(股票价格 = 6)的时候卖出, 这笔交易所能获得利润 = 6-3 = 3 。
示例 2:

输入: [1,2,3,4,5]
输出: 4
解释: 在第 1 天(股票价格 = 1)的时候买入,在第 5 天 (股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5-1 = 4 。
     注意你不能在第 1 天和第 2 天接连购买股票,之后再将它们卖出。
     因为这样属于同时参与了多笔交易,你必须在再次购买前出售掉之前的股票。
示例 3:

输入: [7,6,4,3,1]
输出: 0
解释: 在这种情况下, 没有交易完成, 所以最大利润为 0。
 

提示:

1 <= prices.length <= 3 * 10 ^ 4
0 <= prices[i] <= 10 ^ 4

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2,解题思路

与这一题类似@&再见萤火虫&【LeetCode_Array_121. Best Time to Buy and Sell Stock买卖股票的最佳时机(C++)】。区别在于本题允许多次交易,且买入必须紧邻着卖出,然后才可以进行下一次买入;

算法

  1. 顺着上一题的思路,同样用一个变量minPrice记录最低价格,同时用maxPrice记录最高价格;
  2. 一旦当前价格prices[i]低于最高价格,就更新ans += maxPrice - minPrice。同时minPrice与maxPrice更新为当前价格prices[i](其实联系实际也很容易得出结论;
  3. 否则就将minPrice与maxPrice更新为prices[i];
  4. 注意:由于此处算法的设计,当数组最后的部分呈递增时,不会卖出,所以需要在循环外面增加一次ans的更新ans += maxPrice - minPrice;

 

3,AC代码

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int ans = 0, minPrice = prices[0], maxPrice = prices[0];
        if(prices.size() == 0) return 0;
        for(int i = 1; i < prices.size(); ++i){
            if(maxPrice > prices[i]){           // 发现当前价格prices[i]低于之前最高价格maxPrice时就卖出
                ans += maxPrice - minPrice;     // 卖出
                maxPrice = minPrice = prices[i];
            }else{                              // 价格还在上涨 更新最高价格
                maxPrice = prices[i];
                minPrice = min(minPrice, prices[i]);
            }
        }
        ans += maxPrice - minPrice;             // 因为算法本身的原因 只有当价格低于最高价格时才会卖出 所以数列递增时会出错 故补上这条语句
        return ans;
    }
};

4,解题过程

一发入魂o(* ̄▽ ̄*)ブ

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值