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

NYOJ 79 导弹拦截

时间:2014-08-23 15:23:20      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   div   代码   

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=79

 

思路:最长上升子序列的变形,反过来用就可以了,即最长下降子序列。l[i]表示以第i个数为最小值的最长下降子序列长度。

 

 

代码:

  

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

int l[21];
int a[21];

int main()
{
    int num;
    cin>>num;
    int n;
    int res;
    while(num--)
    {
            res = 0;
            cin>>n;
            for(int i=1;i<=n;i++)
            {
                cin>>a[i];
            }    
            
            
            for(int i=1;i<=n;i++)
            {
                l[i] = 0;
                for(int j=i-1;j>=1;j--)
                {
                    if(a[i]<a[j]&&l[i]<l[j])
                    {
                        l[i] = l[j];
                    }            
                }
                l[i]++;
                res = max(res,l[i]);
            }
            cout<<res<<endl;
    }
    return 0;
} 

 

NYOJ 79 导弹拦截

标签:style   blog   http   color   os   io   for   div   代码   

原文地址:http://www.cnblogs.com/ltwy/p/3931118.html

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