leetcode 122. Best Time to Buy and Sell Stock II

Say you have an array for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

思路很简单,只要看到价格涨,就在最低点买进,最高点卖出!

复制代码
class Solution(object):
    def maxProfit(self, prices):
        """
        :type prices: List[int]
        :rtype: int
        """
        # buy at lowest value, and sell it at highest
        if not prices: return 0
        ans = 0
        lowest = highest = prices[0]
        is_grow = False
        for i in xrange(1, len(prices)):
            if prices[i] > prices[i-1]:
                highest = prices[i]
                is_grow = True
            else:
                if is_grow: # ^ point
                    ans += highest - lowest
                lowest = prices[i]
                is_grow = False
        if is_grow:
            ans += highest - lowest
        return ans                    
复制代码

直接绘图就知道上面解法和下面是等价的:

就是贪心,看到涨就买进卖出!!!

复制代码
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;
}
复制代码

 

还有贪心的解法,先找到最低点,再找最高点:

复制代码
class Solution(object):
    def maxProfit(self, prices):
        """
        :type prices: List[int]
        :rtype: int
        """
        # buy at lowest value, and sell it at highest
        if not prices: return 0
        ans = 0
        i = 0
        length = len(prices)
        # 3 2 1
        # 1 2 3
        while i < length:
            while i<length-1 and prices[i]>=prices[i+1]: i += 1
            if i == length-1: break
            lowest = prices[i] 
            while i<length-1 and prices[i]<prices[i+1]: i += 1  
            ans += prices[i]-lowest #到这里,只能是i==length-1(也是因为一直涨到数组over) 或者是遇到了^转折点
            i += 1
        return ans                    
复制代码

 

posted @   bonelee  阅读(198)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· DeepSeek 开源周回顾「GitHub 热点速览」
历史上的今天:
2017-03-27 Lucene 4.X 倒排索引原理与实现: (3) Term Dictionary和Index文件 (FST详细解析)——直接看例子就明白了!!!
2017-03-27 超线程技术——超线程技术让(P4)处理器增加5%的裸晶面积,就可以换来15%~30%的效能提升,本质单核模拟双核!和异步编程的思想无异。
2017-03-27 SQL数据分析概览——Hive、Impala、Spark SQL、Drill、HAWQ 以及Presto+druid
点击右上角即可分享
微信分享提示