zoukankan      html  css  js  c++  java
  • POJ 2533 Longest Ordered Subsequence

    Longest Ordered Subsequence

    Time Limit: 2000ms
    Memory Limit: 65536KB
    This problem will be judged on PKU. Original ID: 2533
    64-bit integer IO format: %lld      Java class name: Main
     
    A numeric sequence of ai is ordered if a1 < a2 < ... < aN. Let the subsequence of the given numeric sequence (a1a2, ..., aN) be any sequence (ai1ai2, ..., aiK), where 1 <= i1 < i2 < ... < iK <= N. For example, sequence (1, 7, 3, 5, 9, 4, 8) has ordered subsequences, e. g., (1, 7), (3, 4, 8) and many others. All longest ordered subsequences are of length 4, e. g., (1, 3, 5, 8).

    Your program, when given the numeric sequence, must find the length of its longest ordered subsequence.
     

    Input

    The first line of input file contains the length of sequence N. The second line contains the elements of sequence - N integers in the range from 0 to 10000 each, separated by spaces. 1 <= N <= 1000
     

    Output

    Output file must contain a single integer - the length of the longest ordered subsequence of the given sequence.
     

    Sample Input

    7
    1 7 3 5 9 4 8

    Sample Output

    4
    

    Source

     
    解题:LIS
     
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cmath>
     5 #include <algorithm>
     6 #include <climits>
     7 #include <vector>
     8 #include <queue>
     9 #include <cstdlib>
    10 #include <string>
    11 #include <set>
    12 #include <stack>
    13 #define LL long long
    14 #define pii pair<int,int>
    15 #define INF 0x3f3f3f3f
    16 using namespace std;
    17 const int maxn = 1010;
    18 int dp[maxn],d[maxn],n;
    19 int main() {
    20     while(~scanf("%d",&n)){
    21         for(int i = 0; i < n; ++i){
    22             scanf("%d",d+i);
    23             dp[i] = INF;
    24         }
    25         dp[n] = INF;
    26         for(int i = 0; i < n; ++i){
    27             int *p = lower_bound(dp,dp+n+1,d[i]);
    28             *p = d[i];
    29         }
    30         printf("%d
    ",lower_bound(dp,dp+n+1,INF)-dp);
    31     }
    32     return 0;
    33 }
    View Code
  • 相关阅读:
    expects parameter 1 to be resource, array given 错误
    PHP 多维数组处理,将1维或者多维数组处理成字符串
    uchome realname_set()参数
    ASP.NET 开源CMS汇总
    微软 Visual Studio .net 2005 常用插件搜罗
    C#中DllImport用法和路径问题
    XSLT输出的HTML空元素导致jQurey解析出错
    hdu1874畅通工程续
    Super Prime
    Beautiful Year
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4036610.html
Copyright © 2011-2022 走看看