比赛 20121023 评测结果 AAAAAWWWAA
题目名称 奶牛排队 最终得分 70
用户昵称 feng 运行时间 0.120 s
代码语言 C++ 内存使用 1.07 MiB
提交时间 2012-10-23 21:21:10
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;
int maxx,minx,x,y,ans,i,n;
int a[200000];
int main()
{
	freopen("tahort.in","r",stdin);
	freopen("tahort.out","w",stdout);
	scanf("%d",&n);
	for (i=1;i<=n;i++)
		scanf("%d",&a[i]);
	minx=a[1];
	maxx=a[1];
	x=1;
	y=1;
	ans=0;
	for (i=1;i<=n;i++){
		if (a[i]>maxx){
			maxx=a[i];
			y=i;
		}
		if (a[i]<=minx){
			maxx=a[i];
			x=i;
			y=i;
			minx=a[i];
		}
		int tmp=(y-x+1);
		if( tmp==1)  tmp=0;
		if (tmp>ans) ans=tmp;
	}
	printf("%d",ans);
	return 0;
}