Java for Leetcode 188-Buy and Sell Stock IV "hard"

Source: Internet
Author: User

Say you has an array for which the i-th element is the price of a given-stock on day I.

Design an algorithm to find the maximum profit. Transactions at the most K .

Problem Solving Ideas:

This is the most difficult part of the best time to Buy and Sell stock Series, which needs to be Dp,java implemented as follows:

    public int Maxprofit (int k, int[] prices) {        if (k = = 0 | | Prices.length < 2)            return 0;        if (k > Prices.length/2) {            int maxprofitii = 0;            for (int i = 1; i < prices.length; ++i)                if (Prices[i] > prices[i-1])                maxprofitii + = prices[i]-prices[i- 1];            return maxprofitii;        }        Int[] Buy=new int[k];        Int[] Sell=new int[k];        for (int i=0;i<buy.length;i++)        buy[i]=integer.min_value;        for (int i = 0; i < prices.length; i++)            for (int j = k-1; J >= 0; j--) {                Sell[j] = Math.max (sell[j], buy [j] + prices[i]);                if (j = = 0)                    Buy[j] = Math.max (Buy[j],-prices[i]);                else                    buy[j] = Math.max (Buy[j], sell[j-1]-prices[i]);            }        return sell[k-1];    }

Java for Leetcode 188-Buy and Sell Stock IV "hard"

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.