记录详情

Wrong Answer


  
# 状态 耗时 内存占用
#1 Accepted 1ms 228.0 KiB
#2 Accepted 1ms 224.0 KiB
#3 Accepted 1ms 228.0 KiB
#4 Accepted 1ms 224.0 KiB
#5 Accepted 1ms 228.0 KiB
#6 Accepted 1ms 224.0 KiB
#7 Wrong Answer 1ms 228.0 KiB
#8 Accepted 2ms 352.0 KiB
#9 Accepted 8ms 500.0 KiB
#10 Accepted 14ms 600.0 KiB

代码

#include<iostream>
#include<cstdio>
using namespace std;
const int maxn=100010;
int n,h[maxn],g[maxn],ans=0,last;
bool jj=0,up;


int main()
{
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
		scanf("%d",&h[i]);
	if(h[1]<h[2])up=1;
	else up=0;
	ans=2;
	for(int i=3;i<=n;i++)
	{
		if(up&&h[i]<h[i-1])
		{
			up=0;
			ans++;
		}
		else if(!up&&h[i]>h[i-1])
		{
			up=1;
			ans++;
		}
	}
	printf("%d",ans);
	return 0;
}

信息

递交者
类型
递交
题目
P1019 花匠
比赛
随机真题赛第四轮(xhy&lfy讲题)
题目数据
下载
语言
C++
递交时间
2019-11-13 15:11:30
评测时间
2019-11-13 15:11:30
评测机
分数
90
总耗时
35ms
峰值内存
600.0 KiB