[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]

  • 题目大意:求最长上升子串

  1. #include <cstdio>
  2. using namespace std;
  3. int a[100000 + 100];
  4. int main(){
  5. int n;
  6. scanf("%d",&n);
  7. for(int i = 0 ;i < n ;++i)
  8. scanf("%d",&a[i]);
  9. int cur = 1,ans = 0;
  10. for(int i = 1;i < n ;++i){
  11. if(a[i] >= a[i - 1]) ++cur;
  12. else{
  13. if(ans < cur) ans = cur;
  14. cur = 1;
  15. }
  16. }
  17. printf("%d\n", cur>ans?cur:ans);
  18. return 0;
  19. }




以上是关于[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 静态编译程序

Solr DateRangeField

汇编小记16/3/23

Android中AsyncTask基本用法与源码分析(API 23)

antlr