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

Bridging signals hdu 1950 (最长上升子序列)

时间:2016-08-20 13:01:43      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

 

 

http://acm.split.hdu.edu.cn/showproblem.php?pid=1950

 

 

题意:求最长上升(不连续or连续)子序列

 

推荐博客链接:

http://blog.csdn.net/sinat_30062549/article/details/47197073

 

技术分享
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <string>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <stack>
#include <math.h>

using namespace std;

#define INF 0x3f3f3f3f
const int maxn = 510000;
typedef long long LL;
int a[maxn], s[maxn];

int main()
{
    int T, n;

    scanf("%d", &T);

    while(T --)
    {
        scanf("%d", &n);

        for(int i=1; i<=n; i++)
            scanf("%d", &a[i]);

        int len = 0;
        memset(s, 0, sizeof(s));

        for(int i=1; i<=n; i++)
        {
            if(a[i]>=s[len])
            {
                s[++len]=a[i];
                continue;
            }

            int pos = upper_bound(s, s+len, a[i])-s;///找出s数组中比a[i]大的数字的下标
            s[pos] = a[i];
        }

        printf("%d\n", len);
    }
    return 0;
}
View Code

 

Bridging signals hdu 1950 (最长上升子序列)

标签:

原文地址:http://www.cnblogs.com/daydayupacm/p/5790184.html

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