P1317 低洼地 简单模拟
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1317 低洼地 简单模拟相关的知识,希望对你有一定的参考价值。
https://www.luogu.com.cn/problem/P1317
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
const int N=1e4+10;
int a[N];
int ans;
int main(void)
{
int n; cin>>n;
for(int i=1;i<=n;i++) cin>>a[i];
for(int i=2;i<=n-1;i++)
{
if(a[i]<=a[i-1]&&a[i]<a[i+1])
{
ans++;
}
}
cout<<ans<<endl;
return 0;
}
以上是关于P1317 低洼地 简单模拟的主要内容,如果未能解决你的问题,请参考以下文章