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

poj2796(单调栈)

时间:2018-09-19 16:12:48      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:code   namespace   etc   return   ref   eps   最大值   --   har   

传送门

实测如果有多个值相等,输出最后一个最大值的LR

ac代码:

#include<bits/stdc++.h>
#define per(i,a,b) for(int i=a;i<=b;i++)
using namespace std;
typedef long long ll;
//#define int long long
const ll inf =2333333333333333LL;
const double eps=1e-8;
int read(){
    char ch=getchar();
    int res=0,f=0;
    while(ch<0 || ch>9){f=(ch==-?-1:1);ch=getchar();}
    while(ch>=0&&ch<=9){res=res*10+(ch-0);ch=getchar();}
    return res*f;
}
// ------------------------head
#define mod 1000000007
const int N=100005;
int n,L[N],R[N];
ll s[N],a[N];
stack<ll>st;

signed main()
{
    while(scanf("%d",&n)!=EOF){
        s[0]=0;
        while(!st.empty())st.pop();
        per(i,1,n){scanf("%lld",&a[i]);s[i]=s[i-1]+a[i];}
        for(int i=1;i<=n;i++){
            while(!st.empty()&&a[st.top()]>=a[i])st.pop();
            if(st.empty())L[i]=0;
            else L[i]=st.top();
            st.push(i);
        }
        while(!st.empty())st.pop();
        for(int i=n;i>=1;i--){
            while(!st.empty()&&a[st.top()]>=a[i])st.pop();
            if(st.empty())R[i]=n;
            else R[i]=st.top()-1;
            st.push(i);
        }
        ll res=0;
        int k;
        per(i,1,n){
            ll tmp=(ll)a[i]*(s[R[i]]-s[L[i]]);
            if(tmp>=res){
                res=tmp;
                k=i;
            }
        }
        printf("%lld\n%d %d\n",res,L[k]+1,R[k]);
    }
    return 0;
}

 

poj2796(单调栈)

标签:code   namespace   etc   return   ref   eps   最大值   --   har   

原文地址:https://www.cnblogs.com/WindFreedom/p/9674538.html

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