mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-09 03:34:02 +08:00
添加0309.最佳买卖股票时机含冷冻期和Java版本
This commit is contained in:
@ -159,9 +159,33 @@ public:
|
|||||||
|
|
||||||
## 其他语言版本
|
## 其他语言版本
|
||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
|
||||||
|
```java
|
||||||
|
class Solution {
|
||||||
|
public int maxProfit(int[] prices) {
|
||||||
|
if (prices == null || prices.length < 2) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
int[][] dp = new int[prices.length][2];
|
||||||
|
|
||||||
|
// bad case
|
||||||
|
dp[0][0] = 0;
|
||||||
|
dp[0][1] = -prices[0];
|
||||||
|
dp[1][0] = Math.max(dp[0][0], dp[0][1] + prices[1]);
|
||||||
|
dp[1][1] = Math.max(dp[0][1], -prices[1]);
|
||||||
|
|
||||||
|
for (int i = 2; i < prices.length; i++) {
|
||||||
|
// dp公式
|
||||||
|
dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1] + prices[i]);
|
||||||
|
dp[i][1] = Math.max(dp[i - 1][1], dp[i - 2][0] - prices[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return dp[prices.length - 1][0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user