[2016-03-23][codeforces][580][A][Kefa and First Steps]
Posted 红洋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[2016-03-23][codeforces][580][A][Kefa and First Steps]相关的知识,希望对你有一定的参考价值。
时间:2016-03-23 13:04:56 星期三
题目编号:[2016-03-23][codeforces][580][A][Kefa and First Steps]
题目大意:求最长上升子串
#include <cstdio>
using namespace std;
int a[100000 + 100];
int main(){
int n;
scanf("%d",&n);
for(int i = 0 ;i < n ;++i)
scanf("%d",&a[i]);
int cur = 1,ans = 0;
for(int i = 1;i < n ;++i){
if(a[i] >= a[i - 1]) ++cur;
else{
if(ans < cur) ans = cur;
cur = 1;
}
}
printf("%d\n", cur>ans?cur:ans);
return 0;
}
以上是关于[2016-03-23][codeforces][580][A][Kefa and First Steps]的主要内容,如果未能解决你的问题,请参考以下文章
[2016-03-23][codeforces][580][A][Kefa and First Steps]
FFmpeg for XP(x86) 2016-03-23 static 静态编译程序