1531 山峰【解题报告】

#include<cstdio>
#include<cmath>
#include<algorithm>
#include<cstring>
using namespace std;
int n,h[15000+10],s[15000+10];
long long ans=0;
int main()
{
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
		scanf("%d",&h[i]);
	for(int i=2;i<=n;i++)
	{
		int htmp=h[i-1];
		s[i]=1;
		for(int j=i-2;j>=1;j--)
		{
			if(h[j]<htmp)continue;
			s[i]++;
			htmp=h[j];		
		}
	}
	for(int i=2;i<=n;i++)
	ans+=s[i];
	printf("%d",ans);
	return 0;
}

你可能感兴趣的:(1531 山峰【解题报告】)