hdu 1025 最长子序列,lower_bound的使用,二分查找

这道题是dp的思想,我想的是dfs,毕竟我刚学会这个算法,后来,也想到要排序,那是我为了寻找剪枝条件,最后,找到这种解法,mark一下。
学到一个最长上升子序列的求解方法:利用二分查找。

明天学习下最长上升子序列的求法。

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


typedef struct {

    int p;
    int r;
}Node;

#define MAXNUM 500000
Node city[MAXNUM+2];
int stack[MAXNUM+2];
int n=0;
int cmp(Node x,Node y){

    return x.p<y.p;
}

int LIS(){

    memset(stack,MAXNUM+2,sizeof(stack));

    // find the longest increment sequence ,
    // if city[i].rich >stack[top]  push
    // else replace the smallest that
    //greater than  city[i].rich with city[i].rich
     for(int i=0;i<n;i++){

        *lower_bound(stack,stack+n,city[i].r)=city[i].r;
    }

    int res=lower_bound(stack,stack+n,MAXNUM+2)-stack;
    return res;

}
int main()
{

    int t=0;


    while(scanf("%d",&n)!=EOF){

        t++;
        memset(city,0,sizeof(city));
        for(int i=0;i<n;i++){

            scanf("%d%d",&city[i].p,&city[i].r);
        }

        sort(city,city+n,cmp);
        //output
        int maxRoad=LIS();


        printf("Case %d:\n",t);
        if(maxRoad==1)
            printf("My king, at most %d road can be built.\n\n",maxRoad);
        else
            printf("My king, at most %d roads can be built.\n\n",maxRoad);

    }

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值