题解 | #拦截导弹#

拦截导弹

http://www.nowcoder.com/practice/dad3aa23d74b4aaea0749042bba2358a

就是最长上升子序列的问题,把上升改成不减就行了

#include <iostream>
#include <algorithm>
using namespace std;

const int N = 30;

int a[N], f[N];
int n;

int main()
{
    cin >> n;
    for (int i = 1; i <= n; ++i)
        cin >> a[i], f[i] = 1;
    
    for (int i = 1; i <= n; ++i)
        for (int j = 1; j < i; ++j)
            if (a[j] >= a[i])
                f[i] = max(f[i], f[j] + 1);
    
    int res = 0;
    for (int i = 1; i <= n; ++i)
        res = max(res , f[i]);
    cout << res << endl;
    return 0;
}
全部评论

相关推荐

09-18 14:55
门头沟学院 Java
点赞 评论 收藏
分享
09-21 21:14
门头沟学院
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务