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

单调栈

时间:2015-08-19 13:19:37      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:

单调栈

水几道单调栈。。。

poj3250:

http://poj.org/problem?id=3250

技术分享
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<algorithm>
#include<stack>
#define REP(i,a,b) for(int i=a;i<=b;i++)

using namespace std;

const int maxn=1000100;

typedef long long ll;
int N;
ll h;
stack<ll> s;

int main()
{
    while(cin>>N){
        while(!s.empty()) s.pop();
        ll ans=0;
        REP(i,1,N){
            scanf("%lld",&h);
            while(!s.empty()&&s.top()<=h) s.pop();
            ans+=s.size();
            s.push(h);
        }
        cout<<ans<<endl;
    }
    return 0;
}
View Code

 

单调栈

标签:

原文地址:http://www.cnblogs.com/--560/p/4741843.html

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