mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
50 lines
960 B
C++
50 lines
960 B
C++
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
|
|
#include <algorithm>
|
|
using namespace std;
|
|
/// LCS 最长子序列
|
|
namespace LCS
|
|
{
|
|
const int MAXLEN_A = 512;
|
|
const int MAXLEN_B = 512;
|
|
int dp[MAXLEN_A][MAXLEN_B];
|
|
int deal(const char* a,const char* b)
|
|
{
|
|
int lena=strlen(a);
|
|
int lenb=strlen(b);
|
|
for(int i=0;i<=lenb;i++)
|
|
{
|
|
for(int j=0;j<=lena;j++)
|
|
{
|
|
if(i==0) dp[i][j]=0;
|
|
else if(j==0) dp[i][j]=0;
|
|
else if(b[i-1]==a[j-1])
|
|
{
|
|
dp[i][j]=dp[i-1][j-1]+1;
|
|
}
|
|
else
|
|
{
|
|
dp[i][j]=max(dp[i-1][j],dp[i][j-1]);
|
|
}
|
|
}
|
|
}
|
|
return dp[lenb][lena];
|
|
}
|
|
}//End of namespace LCS
|
|
|
|
char stra[512];
|
|
char strb[512];
|
|
int main()
|
|
{
|
|
using namespace LCS;
|
|
while(scanf("%s %s",stra,strb)==2)
|
|
{
|
|
memset(dp,0,sizeof(dp));
|
|
int ans=deal(stra,strb);
|
|
printf("%d\n",ans);
|
|
}
|
|
return 0;
|
|
}
|