当前位置:   article > 正文

Leetcode刷题309. 最佳买卖股票时机含冷冻期_bonbon什么时候交易

bonbon什么时候交易

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

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

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

输入: [1,2,3,0,2]
输出: 3 
解释: 对应的交易状态为: [买入, 卖出, 冷冻期, 买入, 卖出]

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

这道题跟122. 买卖股票的最佳时机 II 类似,只不过存在冷冻期,所以至少需要隔一天才能选择买入,可以套进框架,修改问题的参数。

感谢力扣官方题解最佳买卖股票时机含冷冻期labuladong一个方法团灭 6 道股票问题

每次sell之后要等一天才能继续交易,只要把这个特点融入上一题的状态转移方程即可:

dp[i][0] = max(dp[i-1][0], dp[i-1][1] + prices[i])
dp[i][1] = max(dp[i-1][1], dp[i-2][0] - prices[i])
解释:第 i 天选择 buy 的时候,要从 i-2 的状态转移,而不是 i-1 

  1. class Solution {
  2. public int maxProfit(int[] prices) {
  3. // return maxProfitI(prices);
  4. // return maxProfitII(prices);
  5. // return maxProfitIII(prices);
  6. return maxProfitIV(prices);
  7. }
  8. //方法四:基于方法三空间优化
  9. //时间复杂度O(n),空间复杂度O(1)
  10. private int maxProfitIV(int[] prices) {
  11. if (prices == null || prices.length == 0) {
  12. return 0;
  13. }
  14. int dp0 = 0;
  15. int dp1 = Integer.MIN_VALUE;
  16. //代表 dp[i-2][0]
  17. int dp2 = 0;
  18. for (int price : prices) {
  19. int temp = dp0;
  20. dp0 = Math.max(dp0, dp1 + price);
  21. dp1 = Math.max(dp1, dp2 - price);
  22. dp2 = temp;
  23. }
  24. return dp0;
  25. }
  26. //方法三:类似第122题,不过需要加上冷冻期
  27. //第 i 天选择 buy 的时候,要从 i-2 的状态转移,而不是 i-1
  28. // dp[i][0] = max(dp[i-1][0], dp[i-1][1] + prices[i])
  29. // dp[i][1] = max(dp[i-1][1], dp[i-2][0] - prices[i])
  30. //时间复杂度O(n),空间复杂度O(n)
  31. private int maxProfitIII(int[] prices) {
  32. if (prices == null || prices.length == 0) {
  33. return 0;
  34. }
  35. int len = prices.length;
  36. int[][] dp = new int[len][2];
  37. dp[0][0] = 0;
  38. dp[0][1] = -prices[0];
  39. for (int i = 1; i < len; i++) {
  40. if (i - 2 == -1) {
  41. dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1] + prices[i]);
  42. //dp[i][1] = max(dp[i - 1][1], dp[i - 2][0] - prices[i])
  43. // = max(dp[i - 1][1], dp[-1][0] - prices[i])
  44. // = max(dp[i-1][1], -prices[i])
  45. dp[i][1] = Math.max(dp[i - 1][1], - prices[i]);
  46. continue;
  47. }
  48. dp[i][0] = Math.max(dp[i-1][0], dp[i-1][1] + prices[i]);
  49. dp[i][1] = Math.max(dp[i-1][1], dp[i-2][0] - prices[i]);
  50. }
  51. return dp[len - 1][0];
  52. }
  53. //基于方法一空间优化,f[i][..] 只与 f[i−1]有关,只需要定义3个变量保存f[i][0],f[i][1],f[i][2]即可
  54. //时间复杂度O(n),空间复杂度O(1)
  55. private int maxProfitII(int[] prices) {
  56. if (prices == null || prices.length == 0) {
  57. return 0;
  58. }
  59. int dp0 = -prices[0];
  60. int dp1 = 0;
  61. int dp2 = 0;
  62. for (int price: prices) {
  63. int newDp0 = Math.max(dp0, dp2 - price);
  64. int newDp1 = newDp0 + price;
  65. int newDp2 = Math.max(dp2, dp1);
  66. dp0 = newDp0;
  67. dp1 = newDp1;
  68. dp2 = newDp2;
  69. }
  70. return Math.max(dp1, dp2);
  71. }
  72. //方法一:动态规划
  73. //定义dp[i][j]表示第i天结束后状态为j的累计最大收益,j会有三种状态:
  74. // dp[i][0]:持有股票的最大收益
  75. // dp[i][1]:不持有股票,并且处于冷冻期的最大收益
  76. // dp[i][2]:不持有股票,并且不在冷冻期的最大收益
  77. //时间复杂度O(n),空间复杂度O(n)
  78. private int maxProfitI(int[] prices) {
  79. if (prices == null || prices.length == 0) {
  80. return 0;
  81. }
  82. int len = prices.length;
  83. int[][] dp = new int[len][3];
  84. dp[0][0] = -prices[0];
  85. for (int i = 1; i < len; i++) {
  86. dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][2] - prices[i]);
  87. dp[i][1] = dp[i - 1][0] + prices[i];
  88. dp[i][2] = Math.max(dp[i - 1][2], dp[i - 1][1]);
  89. }
  90. return Math.max(dp[len - 1][1], dp[len - 1][2]);
  91. }
  92. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/570289
推荐阅读
相关标签
  

闽ICP备14008679号