HDU_1506_单调栈

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU_1506_单调栈相关的知识,希望对你有一定的参考价值。

http://acm.hdu.edu.cn/showproblem.php?pid=1506

 

从栈底到栈顶从小到大排序,碰到比栈定小的元素,出栈处理,直到栈顶比元素小或者栈为空。

数组最后多加了个-1,处理了n+1次。

栈中的元素相等情况重复处理了,应该还可以继续优化。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<stack>
using namespace std;

stack<long long> s;
long long a[100005];
int main()
{
    int n;
    while(scanf("%d",&n) && n)
    {
        while(!s.empty())   s.pop();
        long long ans = 0;
        for(int i = 1;i <= n;i++)   scanf("%lld",&a[i]);
        a[n+1] = 0;
        for(int i = 1;i <= n+1;i++)
        {
            while(!s.empty() && a[s.top()] > a[i])
            {
                int temp = s.top();
                s.pop();
                int len = s.empty()?i-1:i-s.top()-1;
                ans = max(ans,len*a[temp]);
            }
            s.push(i);
        }
        printf("%lld\n",ans);
    }
    return 0;
}

 

以上是关于HDU_1506_单调栈的主要内容,如果未能解决你的问题,请参考以下文章

hdu 1506 单调栈问题

HDU-Largest Rectangle in a Histogram-1506 单调栈

hdu 1506 单调栈

Largest Rectangle in a Histogram HDU - 1506 (单调栈)

HDU - 1506 Largest Rectangle in a Histogram (单调栈/笛卡尔树)

*HDU - 1506POJ - 2559Largest Rectangle in a Histogram(单调栈或动态规划)