[LeetCode] 714. Best Time to Buy and Sell Stock with Transaction Fee 买卖股票的最佳时间有交易费
Your are given an array of integers prices
, for which the i
-th element is the price of a given stock on day i
; and a non-negative integer fee
representing a transaction fee.
You may complete as many transactions as you like, but you need to pay the transaction fee for each transaction. You may not buy more than 1 share of a stock at a time (ie. you must sell the stock share before you buy again.)
Return the maximum profit you can make.
Example 1:
Input: prices = [1, 3, 2, 8, 4, 9], fee = 2 Output: 8 Explanation: The maximum profit can be achieved by:
- Buying at prices[0] = 1
- Selling at prices[3] = 8
- Buying at prices[4] = 4
- Selling at prices[5] = 9
The total profit is ((8 - 1) - 2) + ((9 - 4) - 2) = 8.
Note:
0 < prices.length <= 50000
.0 < prices[i] < 50000
.0 <= fee < 50000
.
还是买卖股票的最佳时间问题,这题每一次买卖时会有交易费。
解法:DP。第i天的利润分成两个,用两个dp数组分别进行计算,buy[i], sell[i]。
初始值:buy[0]=-prices[0], sell[0]=0
公式:
buy[i] = Math.max(buy[i - 1], sell[i - 1] - prices[i])
第i天买,如果第i-1天是买,就不能买了,利润是buy[i-1]。如果i-1天是卖,就可以买,利润是sell[i-1] - prices[i]。
sell[i] = Math.max(sell[i - 1], buy[i - 1] + prices[i])
第i天卖,如果第i-1天是卖,就不能卖了,利润是sell[i-1]。如果i-1天是买,就可以卖,利润是buy[i - 1] + prices[i]。
Most consistent ways of dealing with the series of stock problems
Java: pay the fee when buying the stock
1 2 3 4 5 6 7 8 9 10 | public int maxProfit( int [] prices, int fee) { if (prices.length <= 1 ) return 0 ; int days = prices.length, buy[] = new int [days], sell[] = new int [days]; buy[ 0 ]=-prices[ 0 ]-fee; for ( int i = 1 ; i<days; i++) { buy[i] = Math.max(buy[i - 1 ], sell[i - 1 ] - prices[i] - fee); // keep the same as day i-1, or buy from sell status at day i-1 sell[i] = Math.max(sell[i - 1 ], buy[i - 1 ] + prices[i]); // keep the same as day i-1, or sell from buy status at day i-1 } return sell[days - 1 ]; } |
Java: pay the fee when selling the stock
1 2 3 4 5 6 7 8 9 10 | public int maxProfit( int [] prices, int fee) { if (prices.length <= 1 ) return 0 ; int days = prices.length, buy[] = new int [days], sell[] = new int [days]; buy[ 0 ]=-prices[ 0 ]; for ( int i = 1 ; i<days; i++) { buy[i] = Math.max(buy[i - 1 ], sell[i - 1 ] - prices[i]); // keep the same as day i-1, or buy from sell status at day i-1 sell[i] = Math.max(sell[i - 1 ], buy[i - 1 ] + prices[i] - fee); // keep the same as day i-1, or sell from buy status at day i-1 } return sell[days - 1 ]; } |
Python:
1 2 3 4 5 6 7 8 9 10 11 12 | class Solution( object ): def maxProfit( self , prices, fee): """ :type prices: List[int] :type fee: int :rtype: int """ cash, hold = 0 , - prices[ 0 ] for i in xrange ( 1 , len (prices)): cash = max (cash, hold + prices[i] - fee) hold = max (hold, cash - prices[i]) return cash |
C++:
1 2 3 4 5 6 7 8 9 10 11 12 | class Solution { public : int maxProfit(vector< int >& prices, int fee) { int s0 = 0, s1 = INT_MIN; for ( int p:prices) { int tmp = s0; s0 = max(s0, s1+p); s1 = max(s1, tmp-p-fee); } return s0; } }; |
All LeetCode Questions List 题目汇总
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构