Leetcode 122 Best Time to Buy and Sell Stock Ⅱ

编程入门 行业动态 更新时间:2024-10-27 14:22:48

Leetcode 122 Best <a href=https://www.elefans.com/category/jswz/34/1771096.html style=Time to Buy and Sell Stock Ⅱ"/>

Leetcode 122 Best Time to Buy and Sell Stock Ⅱ

Leetcode 122 Best Time to Buy and Sell Stock Ⅱ

题目描述

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 (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 areengaging 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.

来源:力扣(LeetCode)
链接:
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

思路解析
  • 动态规划:

与上一道题相比,这道题并不限制一个周期内的交易次数,列出状态转移方程:
d p [ i ] [ k ] [ 0 ] = m a x ( d p [ i − 1 ] [ k ] [ 0 ] , d p [ i − 1 ] [ k ] [ 1 ] + p r i c e s [ i ] ) d p [ i ] [ k ] [ 0 ] = m a x ( d p [ i − 1 ] [ k ] [ 1 ] , d p [ i − 1 ] [ k ] [ 0 ] − p r i c e s [ i ] ) dp[i][k][0] = max(dp[i-1][k][0], dp[i-1][k][1] + prices[i]) \\ dp[i][k][0] = max(dp[i-1][k][1], dp[i-1][k][0] - prices[i]) dp[i][k][0]=max(dp[i−1][k][0],dp[i−1][k][1]+prices[i])dp[i][k][0]=max(dp[i−1][k][1],dp[i−1][k][0]−prices[i])
代码如下:

class Solution:def maxProfit(self, prices: List[int]) -> int:length = len(prices)dp_i_k_0 = 0dp_i_k_1 = -1 * sys.maxsizefor i in range(length):temp = dp_i_k_0dp_i_k_0 = max(dp_i_k_0, dp_i_k_1 + prices[i])dp_i_k_1 = max(dp_i_k_1, temp - prices[i])return dp_i_k_0

时间复杂度为 O ( N ) O(N) O(N)

更多推荐

Leetcode 122 Best Time to Buy and Sell Stock Ⅱ

本文发布于:2023-07-28 15:43:43,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1239151.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Time   Leetcode   Stock   Sell   Buy

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!