bzoj1113

Posted ACist

tags:

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

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1113

题解:单调栈

代码:

 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 #include<algorithm>
 5 #define maxn 250005
 6 using namespace std;
 7 int n;
 8 int a[maxn],b[maxn],z[maxn];
 9 int main()
10 {
11     scanf("%d\\n",&n);
12     int mmax=0,top=0,ans=0;
13     for (int i=1; i<=n; i++) scanf("%d%d",&a[i],&b[i]),mmax=max(mmax,b[i]);
14     z[0]=0;
15     for (int i=1; i<=n; i++)
16     {
17         while (z[top]>b[i]) top--;
18         if (z[top]<b[i]) ans++;
19         z[++top]=b[i];
20     }
21     printf("%d\\n",ans);
22 }
View Code

 

以上是关于bzoj1113的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ1113 海报PLA

BZOJ 1113: [Poi2008]海报PLA

bzoj 1113 海报pla

bzoj1113: [Poi2008]海报PLA

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

Bzoj2339--Hnoi2011卡农