POJ-2559 单调栈
作者:互联网
单调栈:
及时排除不可能的选项,保持决策集合的有效性和秩序性
#include<iostream>
#include<iomanip>
#include<vector>
#include<stack>
#define P(i,j) make_pair(i,j)
using namespace std;
typedef long long ll;
stack<pair<ll,ll> >sta;
ll n,a;
int main(){
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
while(cin>>n,n){
ll ans=0;
for(int i=0;i<=n;++i){
if(i^n)cin>>a;
else a=0;
if(sta.empty()||a>sta.top().first)sta.push(P(a,1ll));
else{
ll wid=0;
while(!sta.empty()&&a<sta.top().first){
wid+=sta.top().second;
ans=max(ans,wid*sta.top().first);
sta.pop();
}
sta.push(P(a,wid+1));
}
}
cout<<ans<<'\n';
}
return 0;
}
标签:sta,int,2559,ll,long,while,POJ,include,单调 来源: https://blog.csdn.net/u014137295/article/details/98218244