目录
- 买卖股票的最佳时机IV
- 最佳买卖股票时机含冷冻期⭐⭐⭐
- 买卖股票的最佳时机含手续费
一、买卖股票的最佳时机IV
https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-iv/description/?envType=problem-list-v2&envId=8At1GmaZ
[code]class Solution { public int maxProfit(int k, int[] prices) { int length = prices.length; int[][] dp = new int[length][2*k+1]; for(int i=1; i |