码迷,mamicode.com
首页 > 其他好文 > 详细

20201217 买卖股票的最佳时机含手续费

时间:2020-12-22 12:02:22      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:商业   联系   授权   ice   problems   输入   etc   for   out   

给定一个整数数组 prices,其中第 i 个元素代表了第 i 天的股票价格 ;非负整数 fee 代表了交易股票的手续费用。

你可以无限次地完成交易,但是你每笔交易都需要付手续费。如果你已经购买了一个股票,在卖出它之前你就不能再继续购买股票了。

返回获得利润的最大值。

注意:这里的一笔交易指买入持有并卖出股票的整个过程,每笔交易你只需要为支付一次手续费。

示例 1:

输入: prices = [1, 3, 2, 8, 4, 9], fee = 2
输出: 8
解释: 能够达到的最大利润:  
在此处买入 prices[0] = 1
在此处卖出 prices[3] = 8
在此处买入 prices[4] = 4
在此处卖出 prices[5] = 9
总利润: ((8 - 1) - 2) + ((9 - 4) - 2) = 8.

class Solution {
    public int maxProfit(int[] prices, int fee) {

    }
}


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

 

没有思路 看评论用dp算法

就是定义 假设买入和卖出的价格 在循环中比对假设的价格 代码如下

class Solution {
    public int maxProfit(int[] prices, int fee) {
        int len = prices.length;
        int out = 0,in = -prices[0]; // 第一天若卖出和买入
        for(int i = 0; i < len; i++){
            out = Math.max(out,in + prices[i] - fee); // 如果此次卖出比之前卖出得到的收益低就不卖出
            in = Math.max(in, out - prices[i]); // 如果当前买入比之前买入亏的多也不进行买入
        }
        return out; //最后卖出的收益
    }
}

 

20201217 买卖股票的最佳时机含手续费

标签:商业   联系   授权   ice   problems   输入   etc   for   out   

原文地址:https://www.cnblogs.com/hbhb/p/14148120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!