小A的柱状图

小A的柱状图

https://ac.nowcoder.com/acm/problem/23619

单调栈+前缀和
单调栈维护区间的长度,然后用前缀和来计算最大值

#include<bits/stdc++.h>
using namespace std;
const int maxn=1e6+5;
typedef long long ll;


ll a[maxn],h[maxn];


int main()
{
    ll n,ans=0;
    cin>>n;
    for(int i=1; i<=n; i++)
    {
        cin>>a[i];
        a[i]+=a[i-1];
    }
    for(int i=1; i<=n; i++)
        cin>>h[i];
    stack <int> s;
    s.push(0);
    for(int i=1; i<=n; i++)
    {
        while(h[i]<h[s.top()])
        {
            int t1=s.top();
            s.pop();
            int t2=s.top();
            ans=max(ans,h[t1]*(a[i-1]-a[t2]));
        }
        s.push(i);
    }
    cout<<ans<<endl;
}
全部评论

相关推荐

小浪_Coding:1. 个人技能排版太乱, 写的技术栈太浅了, 跟测试,自动化相关的太少; 2. 项目开发类的太简单没有亮点, 算法类的项目建议只放一个,最好有自动化,CI/CD, pipline的项目, 需要更换; 3.整体排版需要优化, SOOB打招呼都需要注意等.
我的简历长这样
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务