[leetcode] 122.Best Time to Buy and Sell Stock II 动归 or 贪心

本文探讨了使用动态规划和贪心算法解决股票买卖问题的两种方法,对比了它们的时间复杂度和空间复杂度,并给出了简洁有效的算法实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.一开始以为动态规划,直接按照动归的思路来做了,buy[i]表示第i天买入时获得最大利润,

Sell[i]表示第i天卖出其最大利润,有公式,buy[i]=max{sell[1]..sell[i-1]}-a[i]; sell[i]=max{buy[1]..buy[i-1]}+a[i]

public class Solution {

    public int maxProfit(int[] prices) {

        int l=prices.length+1;

        int[] buy=new int[l];

        int[] sell=new int[l];

        sell[0]=0;

        buy[0]=Integer.MIN_VALUE;

  

        int maxsell=sell[0];

        int maxbuy=buy[0];

        for(int i=1;i<=prices.length;i++){

            sell[i]=maxbuy+prices[i-1];

            if (sell[i]>maxsell) maxsell=sell[i];

            buy[i]=maxsell-prices[i-1];

            if (buy[i]>maxbuy) maxbuy=buy[i];

        }

        return maxsell;

    }

}

2.后来想了想似乎没那么麻烦,直接贪心就可以了,找到一个连续递减序列的最小的,然后再找到一个连续递增最大的,相减就是这段可以获得最大利润。

public int maxProfit(int[] prices) {

    int profit = 0, i = 0;

    while (i < prices.length) {

      

        while (i < prices.length-1 && prices[i+1] <= prices[i]) i++;

        int min = prices[i++]; 

        // find next local maximum

        while (i < prices.length-1 && prices[i+1] >= prices[i]) i++;

        profit += i < prices.length ? prices[i++] - min : 0;

    }

    return profit;

}

 

3.看了下mostvotes,发现了这个更简洁的做法,有人说这种方法是假定了可以同一天买和卖,其实不对,比如三天的价格是125,最多能挣5-1,等于(2-1+5-2)其实是一种等效,并不是一定在同一天买了又卖。

public class Solution {

public int maxProfit(int[] prices) {

    int total = 0;

    for (int i=0; i< prices.length-1; i++) {

        if (prices[i+1]>prices[i]) total += prices[i+1]-prices[i];

    }

 

    return total;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值