记录编号 |
394884 |
评测结果 |
AAAAAAAAAA |
题目名称 |
最长公共子序列 |
最终得分 |
100 |
用户昵称 |
liuyu |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.427 s |
提交时间 |
2017-04-14 19:10:11 |
内存使用 |
95.88 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
char a[5005],b[5005];
int s[5005][5005];
int aa,bb;
int main()
{
freopen("lcslength.in","r",stdin);
freopen("lcslength.out","w",stdout);
scanf("%s%s",a,b);
aa=strlen(a);
bb=strlen(b);
for(int i=1;i<aa;i++)
for(int j=1;j<bb;j++)
if(a[i-1]==b[j-1]) s[i][j]=s[i-1][j-1]+1;
else s[i][j]=max(s[i-1][j],s[i][j-1]);
printf("%d",s[aa-1][bb-1]);
return 0;
}