记录编号 470674 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013]花匠 最终得分 100
用户昵称 GravatarBFZD 是否通过 通过
代码语言 C++ 运行时间 0.019 s
提交时间 2017-11-05 11:45:20 内存使用 0.31 MiB
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;

const int maxn=100000+10;

int now,up,down,last;
int n;

int main()
{
	freopen("FlowerNOIP2013.in","r",stdin);
	freopen("FlowerNOIP2013.out","w",stdout);
	scanf("%d",&n);
	up=down=1;
	scanf("%d",&last);
	for(int i=2; i<=n; i++)
	{
		scanf("%d",&now);
		if(now>last) up=max(up,down+1);//如果当前比上一个大可以从小的延伸一个 
		else if(now<last) down=max(down,up+1);//如果当前比上一个小 可以从大的延伸一个 
		last=now;
	}
	cout<<max(up,down)<<endl;
	return 0;
}
//flower