题目大意:给定一个序列,每个元素的大小有一个取值范围,求一段区间满足区间内元素可能单调不降
对
这样可以保证单调队列中的元素是合法的极大子区间
然后更新答案就行了
乱写读入优化害死人啊QwQ
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define M 1001001
using namespace std;
int n,ans;
pair<int,int> a[M];
namespace IStream{
#define L (1<<3)
char Get_Char()
{
static char buffer[M],*S,*T;
if(S==T)
{
T=(S=buffer)+fread(buffer,1,L,stdin);
if(S==T) return EOF;
}
return *S++;
}
int Get_Int()
{
int re=0,mark=0;
char c=Get_Char();
while(c<‘0‘||c>‘9‘)
{
if(c==‘-‘)
mark=1;
c=Get_Char();
}
while(c>=‘0‘&&c<=‘9‘)
re=(re<<3)+(re<<1)+(c-‘0‘),c=Get_Char();
return mark?-re:re;
}
}
int main()
{
using namespace IStream;
//freopen("tem.in","r",stdin);
//freopen("tem.out","w",stdout);
int i;
cin>>n;
for(i=1;i<=n;i++)
{
a[i].first=Get_Int();
a[i].second=Get_Int();
}
static int q[M],r,h;
for(i=1;i<=n;i++)
{
while( r-h>=1 && a[i].first >=a[q[r]].first )
q[r--]=0;
q[++r]=i;
while( r-h>=1 && a[i].second < a[q[h+1]].first )
++h;
ans=max(ans,q[r]-q[h]);
}
cout<<ans<<endl;
return 0;
}
BZOJ 2276 Poi2011 Temperature 单调队列
原文地址:http://blog.csdn.net/popoqqq/article/details/45742965