POJ-2559 单调栈

题目

单调栈:
及时排除不可能的选项,保持决策集合的有效性和秩序性

#include
#include
#include
#include
#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;
}

你可能感兴趣的:(poj,ACM_数据结构)