小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;
}
全部评论

相关推荐

04-29 18:07
常州大学 Java
寂静羽翼:兄弟我已经亲身经历了,双非没实习很多大厂还是会给笔试的,可是有的公司笔试做的好也不给面一直卡着,ssob基本看我没实习都拒绝我了,但是每天投满偶尔也能有一两场初创公司的面试,但是薪资基本在五六千
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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