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

codeforces水题100道 第十四题 Codeforces Round #321 (Div. 2) A. Kefa and First Steps (brute force)

时间:2016-07-20 19:20:06      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://www.codeforces.com/problemset/problem/580/A
题意:求最长连续非降子序列的长度。
C++代码:

技术分享
#include <iostream>
using namespace std;
const int maxn = 100100;
int n, a[maxn], tmp, ans;
int main()
{
    cin >> n;
    for (int i = 0; i < n; i ++)
        cin >> a[i];
    tmp = ans = 1;
    for (int i = 1; i <= n; i++)
        if (a[i] >= a[i-1])
        {
            tmp ++;
            if (tmp > ans) ans = tmp;
        }
        else
            tmp = 1;
    cout << ans;
    return 0;
}
C++

 

codeforces水题100道 第十四题 Codeforces Round #321 (Div. 2) A. Kefa and First Steps (brute force)

标签:

原文地址:http://www.cnblogs.com/moonlightpoet/p/5689173.html

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