首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
leetcode309专题
动态规划28(Leetcode309买股票的最佳时机含冷冻期)
1105 代码: class Solution {public int maxProfit(int[] prices) {int n = prices.length;int[][] dp = new int[n][3];dp[0][0] = -prices[0];for(int i=1;i<n;i++){dp[i][0] = Math.max(dp[i-1][0],dp[i-1][2]-pri
阅读更多...
代码训练营第53天:动态规划part12|leetcode309买卖股票的最佳时期含冷静期|leetcode714买卖股票的最佳时机含手续费
leetcode309:买卖股票的最佳时机含冷冻期 文章讲解:leletcode309 leetcode714:买卖股票的最佳时机含手续费 文章讲解:leetcode714 目录 1,leetcode309 买卖股票的最佳时机含冷冻期 2,leetcode714 买卖股票的最佳时机含手续费 1,leetcode309 买卖股票的最佳时机含冷冻期 class Solution
阅读更多...