wiki 1044 拦截导弹

导弹拦截系统中,求一个系统能拦截导弹的最多个数,就是求最长递减子序列。需要的最少的系统个数=最长增长子序列长度。

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <vector>
using namespace std;
vector<int> heigh,result,result1;
int main(int argc, const char * argv[])
{
    int temp;
    while (scanf("%d", &temp)!=EOF) {
        heigh.push_back(temp);
    }
    result.push_back(heigh[0]);
    result1.push_back(heigh[0]);
    for(int i = 1; i < heigh.size(); i++){
        int j;
        for(j = 0; j < result.size(); j++){
            if(heigh[i]<result[j]) {result[j] = heigh[i]; break;}
        }
        if(j==result.size()) result.push_back(heigh[i]);
        for(j = 0; j < result1.size(); j++){
            if(heigh[i]>result1[j]) {result1[j] = heigh[i]; break;}
        }
        if(j==result1.size()) result1.push_back(heigh[i]);
    }
    printf("%d\n", (int)result1.size());
    printf("%d\n", (int)result.size());
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值