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

[Poi2008]海报PLA

时间:2019-02-16 13:52:45      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:max   amp   print   name   for   read   iostream   online   tps   

传送门

sb单调栈,唯一要注意的是高度相同的时候不需要更新答案
代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
void read(int &x) {
    char ch; bool ok;
    for(ok=0,ch=getchar(); !isdigit(ch); ch=getchar()) if(ch=='-') ok=1;
    for(x=0; isdigit(ch); x=x*10+ch-'0',ch=getchar()); if(ok) x=-x;
}
#define rg register
const int maxn=2.5e5+10;
int n,a[maxn],st[maxn],top,ans;
int main()
{
    read(n);
    for(rg int i=1,j;i<=n;i++)read(j),read(a[i]);
    for(rg int i=1;i<=n;i++)
    {
        while(a[i]<=st[top])ans+=a[i]==st[top]?0:1,top--;
        st[++top]=a[i];
    }
    ans+=top;
    printf("%d\n",ans);
}

[Poi2008]海报PLA

标签:max   amp   print   name   for   read   iostream   online   tps   

原文地址:https://www.cnblogs.com/lcxer/p/10387281.html

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