LeetCode 188: Best Time to Buy and Sell Stock IV Solution

Master LeetCode problem 188 (Best Time to Buy and Sell Stock IV), a hard challenge, with our optimized solutions in Java, C++, and Python. Explore detailed explanations, test your code in our interactive editor, and prepare for coding interviews.

188. Best Time to Buy and Sell Stock IV

Problem Explanation

Explanation

To solve this problem, we can use dynamic programming. We will create a 2D array dp where dp[i][j] represents the maximum profit we can make up to day i with at most j transactions.

  1. Initialize the dp array with dimensions prices.length x k+1.
  2. Perform dynamic programming to fill in the dp array.
  3. Iterate through each day and each possible number of transactions to update the dp array based on two cases: not making a transaction on that day, or making a transaction on that day.
  4. The final answer will be dp[prices.length - 1][k].

Time Complexity: O(nk) Space Complexity: O(nk)

Solution Code

class Solution {
    public int maxProfit(int k, int[] prices) {
        if (prices == null || prices.length == 0) {
            return 0;
        }

        int n = prices.length;
        if (k >= n / 2) {
            int maxProfit = 0;
            for (int i = 1; i < n; i++) {
                if (prices[i] > prices[i - 1]) {
                    maxProfit += prices[i] - prices[i - 1];
                }
            }
            return maxProfit;
        }

        int[][] dp = new int[n][k + 1];
        for (int j = 1; j <= k; j++) {
            int maxDiff = -prices[0];
            for (int i = 1; i < n; i++) {
                dp[i][j] = Math.max(dp[i - 1][j], prices[i] + maxDiff);
                maxDiff = Math.max(maxDiff, dp[i][j - 1] - prices[i]);
            }
        }

        return dp[n - 1][k];
    }
}

Try It Yourself

Loading code editor...

Related LeetCode Problems

Frequently Asked Questions

How to solve LeetCode 188 (Best Time to Buy and Sell Stock IV)?

This page provides optimized solutions for LeetCode problem 188 (Best Time to Buy and Sell Stock IV) in Java, C++, and Python, along with a detailed explanation and an interactive code editor to test your code.

What is the time complexity of LeetCode 188 (Best Time to Buy and Sell Stock IV)?

The time complexity for LeetCode 188 (Best Time to Buy and Sell Stock IV) varies by solution. Check the detailed explanation section for specific complexities in Java, C++, and Python implementations.

Can I run code for LeetCode 188 on DevExCode?

Yes, DevExCode provides an interactive code editor where you can write, test, and run your code for LeetCode 188 in Java, C++, or Python.

Back to LeetCode Solutions