当前位置:   article > 正文

Leetcode刷题123. 买卖股票的最佳时机 III_leetcode 买卖股票问题123

leetcode 买卖股票问题123

给定一个数组,它的第 i 个元素是一支给定的股票在第 i 天的价格。

设计一个算法来计算你所能获取的最大利润。你最多可以完成 两笔 交易。

注意: 你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。

示例 1:

输入: [3,3,5,0,0,3,1,4]
输出: 6
解释: 在第 4 天(股票价格 = 0)的时候买入,在第 6 天(股票价格 = 3)的时候卖出,这笔交易所能获得利润 = 3-0 = 3 。
     随后,在第 7 天(股票价格 = 1)的时候买入,在第 8 天 (股票价格 = 4)的时候卖出,这笔交易所能获得利润 = 4-1 = 3 。
示例 2:

输入: [1,2,3,4,5]
输出: 4
解释: 在第 1 天(股票价格 = 1)的时候买入,在第 5 天 (股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5-1 = 4 。   
     注意你不能在第 1 天和第 2 天接连购买股票,之后再将它们卖出。   
     因为这样属于同时参与了多笔交易,你必须在再次购买前出售掉之前的股票。
示例 3:

输入: [7,6,4,3,1] 
输出: 0 
解释: 在这个情况下, 没有交易完成, 所以最大利润为 0。

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

感谢王尼玛五种实现+详细图解 123.买卖股票的最佳时机 IIIlabuladong一个方法团灭 6 道股票问题

k=2范围较小,可以穷举,不用for循环
dp[i][2][0] = max(dp[i - 1][2][0], dp[i - 1][2][1] + prices[i]);
dp[i][2][1] = max(dp[i - 1][2][1], dp[i - 1][1][0] - prices[i]);
dp[i][1][0] = max(dp[i - 1][1][0], dp[i - 1][1][1] + prices[i]);
dp[i][1][1] = max(dp[i - 1][1][1], dp[i - 1][0][0] - prices[i]);
                = max(dp[i - 1][1][1], -prices[i]);

  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. //方法四:基于方法三优化,dp[i][k][j]只跟前一天的数据有关,可以直接定义变量解决
  9. //时间复杂度O(n),空间复杂度O(1)
  10. private int maxProfitIV(int[] prices) {
  11. if (prices == null || prices.length == 0) {
  12. return 0;
  13. }
  14. int dpi_10 = 0;
  15. int dpi_11 = -prices[0];
  16. int dpi_20 = 0;
  17. int dpi_21 = -prices[0];
  18. for (int i = 1; i < prices.length; i++) {
  19. dpi_10 = Math.max(dpi_10, dpi_11 + prices[i]);
  20. dpi_11 = Math.max(dpi_11, - prices[i]);
  21. dpi_20 = Math.max(dpi_20, dpi_21 + prices[i]);
  22. dpi_21 = Math.max(dpi_21, dpi_10 - prices[i]);
  23. }
  24. return dpi_20;
  25. }
  26. //方法三:基于方法二
  27. //k=2范围较小,可以直接穷举,不用遍历
  28. //时间复杂度O(n),空间复杂度O(n)
  29. private int maxProfitIII(int[] prices) {
  30. if (prices == null || prices.length == 0) {
  31. return 0;
  32. }
  33. int len = prices.length;
  34. int[][][] dp = new int[len][3][2];
  35. dp[0][1][0] = 0;
  36. dp[0][2][0] = 0;
  37. dp[0][1][1] = -prices[0];
  38. //先买入和卖出一次,再买入一次,其实就相当于买入一次
  39. dp[0][2][1] = -prices[0];
  40. for (int i = 1; i < len; i++) {
  41. dp[i][1][0] = Math.max(dp[i - 1][1][0], dp[i - 1][1][1] + prices[i]);
  42. dp[i][1][1] = Math.max(dp[i - 1][1][1], - prices[i]);
  43. dp[i][2][0] = Math.max(dp[i - 1][2][0], dp[i - 1][2][1] + prices[i]);
  44. dp[i][2][1] = Math.max(dp[i - 1][2][1], dp[i - 1][1][0] - prices[i]);
  45. }
  46. return dp[len - 1][2][0];
  47. }
  48. //方法二:动态规划
  49. //定义三维dp数组dp[i][k][j],穷举所有可能求最值
  50. //时间复杂度O(kn),空间复杂度O(2kn)
  51. private int maxProfitII(int[] prices) {
  52. if (prices == null || prices.length == 0) {
  53. return 0;
  54. }
  55. int len = prices.length;
  56. int maxK = 2;
  57. int[][][] dp = new int[len][maxK + 1][2];
  58. for (int i = 0; i < len; i++) {
  59. for (int k = maxK; k >= 1; k--) {
  60. if (i == 0) {
  61. dp[i][k][0] = 0;
  62. dp[i][k][1] = -prices[i];
  63. continue;
  64. }
  65. dp[i][k][0] = Math.max(dp[i - 1][k][0], dp[i - 1][k][1] + prices[i]);
  66. dp[i][k][1] = Math.max(dp[i - 1][k][1], dp[i - 1][k - 1][0] - prices[i]);
  67. }
  68. }
  69. return dp[len - 1][maxK][0];
  70. }
  71. //方法一:递归+备忘录
  72. //定义递归函数dfs(prices,index,status,k)表示第i天状态为status(持有/不持有)至今最多进行k次交易能够获取的最大利润
  73. //时间复杂度O(n),空间复杂度O(n)
  74. private int maxProfitI(int[] prices) {
  75. if (prices == null || prices.length == 0) {
  76. return 0;
  77. }
  78. Map<String, Integer> memoMap = new HashMap<>();
  79. return dfs(prices, prices.length - 1, 0, 2, memoMap);
  80. }
  81. private int dfs(int[] prices, int index, int status, int k, Map<String, Integer> memoMap) {
  82. if (index < 0 || k == 0) {
  83. return status == 1 ? Integer.MIN_VALUE : 0;
  84. }
  85. String key = index + "*" + status + "*" + k;
  86. if (memoMap.containsKey(key)) {
  87. return memoMap.get(key);
  88. }
  89. int res;
  90. if (status == 1) {
  91. res = Math.max(dfs(prices, index - 1, 1, k, memoMap),
  92. dfs(prices, index - 1, 0, k - 1, memoMap) - prices[index]);
  93. } else {
  94. res = Math.max(dfs(prices, index - 1, 0, k, memoMap),
  95. dfs(prices, index - 1, 1, k, memoMap) + prices[index]);
  96. }
  97. memoMap.put(key, res);
  98. return res;
  99. }
  100. }

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

闽ICP备14008679号