码迷,mamicode.com
首页 > 其他好文 > 详细

123. 买卖股票的最佳时机 III

时间:2020-05-05 20:23:11      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:bsp   fit   nbsp   pre   code   color   class   max   ice   

 1 class Solution 
 2 {
 3 public:
 4     int maxProfit(vector<int>& prices) 
 5     {
 6         if(prices.empty()) return 0;
 7         int n = prices.size();
 8         vector<vector<vector<int>>> dp(n,vector<vector<int>>(3,vector<int>(2,0)));
 9 
10         for(int k = 1;k <= 2;k ++)
11         {
12             dp[0][k][0] = 0;
13             dp[0][k][1] = -prices[0];
14         }
15 
16         for(int i = 1;i < n;i ++)
17         {
18             for(int k = 1;k <= 2;k ++)
19             {
20                 dp[i][k][0] = max(dp[i-1][k][0],dp[i-1][k][1] + prices[i]);
21                 dp[i][k][1] = max(dp[i-1][k][1],dp[i-1][k-1][0] - prices[i]);
22             }
23         }
24 
25         return max(dp[n-1][1][0],dp[n-1][2][0]);
26     }
27 };

 

123. 买卖股票的最佳时机 III

标签:bsp   fit   nbsp   pre   code   color   class   max   ice   

原文地址:https://www.cnblogs.com/yuhong1103/p/12831864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!