题解 | #牛群买卖计划III#

牛群买卖计划III

https://www.nowcoder.com/practice/47ce4c953769468e8b8b727af3cbebf5

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param prices int整型一维数组 
     * @return int整型
     */
    public int maxProfitIII (int[] prices) {
        int n = prices.length ; 
        int[] sum = new int[n] ; 
        for(int i = 0;i < n;i++){
            sum[i] = prices[i] ; 
            if(i > 0){
                sum[i] += sum[i-1] ; 
            }
        }
        int[] st = new int[n] ; 
        int top = 0; 
        int ans = 0; 
        for(int i = n-1;i >= 0;i--){
            if(top == 0 || prices[st[top-1]] < prices[i]){
                if(top > 0){
                    ans += prices[st[top-1]]*(st[top-1]-1-i) - (sum[st[top-1]-1] - sum[i]);
                }
                st[top++] = i ; 
            }
        }
        if(top > 0 && st[top-1] > 0){
            ans += prices[st[top-1]]*(st[top-1]) - (sum[st[top-1]-1]) ; 
        }
        return ans ; 
        // write code here
    }
}

从后往前单调栈O(n)

全部评论

相关推荐

10-25 00:32
香梨想要offer:感觉考研以后好好学 后面能乱杀,目前这简历有点难
点赞 评论 收藏
分享
11-15 17:19
湖南大学 Java
成果成果成果果:这是哪个公司的hr,这么离谱吗,我没见过用性别卡技术岗的,身边女性同学拿大厂offer的比比皆是
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务