[Poi2008]海报PLA

Posted lcxer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Poi2008]海报PLA相关的知识,希望对你有一定的参考价值。

传送门

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
",ans);
}

以上是关于[Poi2008]海报PLA的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ 1113: [Poi2008]海报PLA

[Poi2008]海报PLA

bzoj1113: [Poi2008]海报PLA

$bzoj1113-POI2008$ 海报$PLA$ 单调栈

[POI 2008&洛谷P3467]PLA-Postering题解(单调栈)

BZOJ1113 海报PLA