(UVA - 10635)Prince and Princess (LCS变形为LIS,DP)

27 篇文章 0 订阅

链接: https://vjudge.net/problem/UVA-10635
题意:有长度为p+1,q+1(1<=p,q<=n^2)的序列,序列元素为[1,n^2](2<=n<=250),并且都不相同,两个序列的第一个元素都是1.求出两个序列的最长公共子序列的长度。

分析:n的范围不大,并且序列中的数最多只能出现一次,那么可以把第一个序列的元素对应的下标记下,在第二个序列中若输入的数在第一个序列中出现过,就用数组b记录出现的下标。 然后求b的LIS的长度

#include <cstdio>
#include <cstring>
#include <iostream>
#include <cmath>
#include <algorithm>
#include <sstream>
#include <string>
#include <set>
using namespace std;
#define mem(a,n) memset(a,n,sizeof(a))
typedef long long LL;
const int mod=1e9+7;
const double eps=1e-6;
const int INF=0x3f3f3f3f;
const int N=1e5+5;
int a[N],b[N],dp[N];
int main()
{
    int T,n,p,q,cas=1;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d%d",&n,&p,&q);
        int x;
        for(int i=1;i<=p+1;i++)
        {
            scanf("%d",&x);
            a[x]=i;
        }
        int cnt=0;
        for(int i=1;i<=q+1;i++)
        {
            scanf("%d",&x);
            if(a[x]) b[cnt++]=a[x];
        }
        mem(dp,INF);
        for(int i=0;i<cnt;i++)
            *lower_bound(dp,dp+cnt,b[i])=b[i];
        int ans=lower_bound(dp,dp+cnt,INF)-dp;
        printf("Case %d: %d\n",cas++,ans);
    }
    return 0;
}

重要思路: 数据范围不是很大,可以将序列中的元素作为下标记录,巧妙的将LCS问题转化为LIS问题

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值