【leetcode】Best Time to Buy and Sell Stock I&II&III

Problem 1

这里写图片描述

Hint

DP

Code

int maxProfit(int* prices, int pricesSize) {
    if(!pricesSize) return 0;
    int cur = 0;
    int max = 0;
    for(int i=1;i<pricesSize;++i){
        cur += prices[i]-prices[i-1];
        if(cur<0) cur = 0;
        else if(cur>max) max = cur;
    }
    return max;
}

Problem 2

这里写图片描述

Hint

Greedy

Code

int maxProfit(int* prices, int pricesSize) {
    int sum = 0;
    for(int i=1;i<pricesSize;++i){
        sum += prices[i]-prices[i-1]>0?prices[i]-prices[i-1]:0;
    }
    return sum;
}

Problem 3

这里写图片描述

Hint

DP

Code

//打印数组
void printArray(int *array,int len,char *note){
    printf("%s\n",note);
    for(int i=0;i<len;++i)
        printf("%d ",array[i]);
    printf("\n");
}

//简化操作
int *simple(int *prices,int *pricesSize){
    int i=0;
    for(int i=1;i<*pricesSize;++i)
        prices[i-1] = prices[i]-prices[i-1];
    --(*pricesSize);
    //printArray(prices,*pricesSize,"After subtraction:");
    bool flag = prices[0]>=0?true:false;
    int count = 0;
    for(int i=1;i<*pricesSize;++i){
        if(flag){
            if(prices[i]>=0)
                prices[count]+=prices[i];
            else{
                flag = false;
                prices[++count]=prices[i];
            }
        }else{
            if(prices[i]<=0)
                prices[count]+=prices[i];
            else{
                flag = true;
                prices[++count]=prices[i];
            }
        }
    }
    *pricesSize = count+1;
    return prices;
}

//获取当前段最大利润
int maxProfitNow(int *prices,int pricesSize){
    int max = 0;
    int cur = 0;
    for(int i=0;i<pricesSize;++i){
        cur += prices[i];
        if(cur<0){
            cur = 0;
        }
        max = max>cur?max:cur;
    }

    return max;
}

//获取最大利润
int maxProfit(int* prices, int pricesSize) {
    if(pricesSize==1)   return 0;
    //简化
    int *simplestPrices = simple(prices,&pricesSize);
    //printArray(simplestPrices,pricesSize,"After simple:");
    //printf("\n");
    int max = 0;

    for(int i=0;i<pricesSize;++i){
        if(simplestPrices[i]<0){
            int tmp = maxProfitNow(simplestPrices,i) + \
                      maxProfitNow(simplestPrices+i+1,pricesSize-i-1);
            max = tmp>max?tmp:max;
            //printArray(prices,pricesSize,"Test");
            //printf("%d %d--\n",i,tmp);
        }
    }
    int tmp = maxProfitNow(simplestPrices,pricesSize);
    max = tmp>max?tmp:max;

    return max;
}

Summary

You may figure it out,that these problems are as the same with “Maximum subarray”.
So in the third solution,I simplify the prices’ array.And use the DP to calculate the maximum result from some maximum subarray.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值