[Swift]LeetCode309. 最佳买卖股票时机含冷冻期 | Best Time to Buy and Sell Stock with Cooldown

[Swift]LeetCode309. 最佳买卖股票时机含冷冻期 | Best Time to Buy and Sell Stock with Cooldown,第1张

概述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 (ie, buy one a

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 (IE,buy one and sell one share of the stock multiple times) with the following restrictions:

You may not engage in multiple transactions at the same time (IE,you must sell the stock before you buy again). After you sell your stock,you cannot buy stock on next day. (IE,cooldown 1 day)

Example:

input: [1,2,3,2]Output: 3 Explanation: transactions = [buy,sell,cooldown,buy,sell]

给定一个整数数组,其中第 i 个元素代表了第 i 天的股票价格 。?

设计一个算法计算出最大利润。在满足以下约束条件下,你可以尽可能地完成更多的交易(多次买卖一支股票):

你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。 卖出股票后,你无法在第二天买入股票 (即冷冻期为 1 天)。

示例:

输入: [1,2]输出: 3 解释: 对应的交易状态为: [买入,卖出,冷冻期,买入,卖出]
16ms
 1 class Solution { 2     func maxProfit(_ prices: [Int]) -> Int { 3     if prices.count <= 1 { 4          return 0  5     } 6     var s0: Int = 0 7     var s1: Int = -prices[0] 8     var s2: Int = Int.min 9     for i in 1 ..< prices.count {10         let pre0 = s011         let pre1 = s112         let pre2 = s213         s0 = max(pre0,pre2)14         s1 = max(pre0 - prices[i],pre1)15         s2 = pre1 + prices[i]16     }17     return max(s0,s2)18 }19 }

28ms

 1 class Solution { 2     func maxProfit(_ prices: [Int]) -> Int { 3         var buy = Int.min,noOp = Int.min 4         var coolDown = 0,sell = 0 5         for  p in prices { 6             noOp = max(noOp,buy) 7             buy = coolDown - p 8             coolDown = max(coolDown,sell) 9             sell = noOp + p;10         }11         return max(coolDown,sell)12     }13 }
总结

以上是内存溢出为你收集整理的[Swift]LeetCode309. 最佳买卖股票时机含冷冻期 | Best Time to Buy and Sell Stock with Cooldown全部内容,希望文章能够帮你解决[Swift]LeetCode309. 最佳买卖股票时机含冷冻期 | Best Time to Buy and Sell Stock with Cooldown所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/1021047.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存