链接: 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问题