码迷,mamicode.com
首页 > 其他好文 > 详细

学习笔记::单调栈

时间:2017-02-12 01:05:54      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:元素   printf   pen   img   block   namespace   and   cst   art   

单调栈和单调队列长得不是很像。

单调栈的用处是求以一个元素为中心,向两边最多拓展多远距离。

两个小时就没了。。。

poj2796

技术分享
#include<cstdio>
using namespace std;
typedef long long ll;
#define N 200010
struct data
{
    ll v,sum,l,r;
}x[N],st[N],ans;
ll n;
inline void read(ll&a)
{
    ll x=0,f=1; char c=getchar();
    while(c<0||c>9) {if(c==-) f=-1; c=getchar(); }
    while(c>=0&&c<=9) {x*=10; x+=c-0; c=getchar(); }
    a=x*f;
}
int main()
{
    read(n);
    for(int i=1;i<=n;++i) read(x[i].v),x[i].sum=x[i].v,x[i].r=x[i].l=i;
    int top=0;
    for(int i=1;i<=n;++i)
    {
        while(top&&x[i].v<=st[top].v)
        {
            if(st[top].v*st[top].sum>ans.v)
            {
                ans.v=st[top].v*st[top].sum;
                ans.l=st[top].l;
                ans.r=st[top].r;
            }
            if(top>1&&x[i].v<=st[top-1].v) 
            {
                st[top-1].sum+=st[top].sum;
                st[top-1].r=st[top].r;
            }            
            if(st[top-1].v<x[i].v) 
            {
                x[i].sum+=st[top].sum;
                x[i].l=st[top].l;
            }
            --top;
        }
        st[++top]=x[i];        
    }
    while(top>=0)
    {
        if(st[top].v*st[top].sum>ans.v)
        {
            ans.v=st[top].v*st[top].sum;
            ans.l=st[top].l;
            ans.r=st[top].r;
        }
        st[top-1].sum+=st[top].sum;
        st[top-1].r=st[top--].r;
    }
    if(ans.l==0) ans.l=ans.r=1;
    printf("%lld\n%lld %lld\n",ans.v,ans.l,ans.r);
    return 0;
}
View Code

 

学习笔记::单调栈

标签:元素   printf   pen   img   block   namespace   and   cst   art   

原文地址:http://www.cnblogs.com/19992147orz/p/6390316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!