题解 | #牛群买卖计划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 12:05
已编辑
湖南科技大学 Java
若梦难了:我有你这简历,已经大厂乱杀了
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务