码迷,mamicode.com
首页 > 其他好文 > 详细

[2016-03-23][codeforces][580][A][Kefa and First Steps]

时间:2016-03-23 20:00:53      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:

  • 时间: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]

标签:

原文地址:http://www.cnblogs.com/qhy285571052/p/15434871b8b6f9a924660ef4ee6ebce6.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!