比赛 |
动态规划练习2 |
评测结果 |
MMMMMMMMMM |
题目名称 |
最长公共子序列 |
最终得分 |
0 |
用户昵称 |
FFF团 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2017-03-28 18:53:05 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
char c,s1[6000],s2[6000];
int dp[6000][6000];
int main(){
freopen("lcslength.in","r",stdin);
freopen("lcslength.out","w",stdout);
int l1=1,l2=1;
while(cin>>c&&c!='.'){
s1[l1]=c;
l1++;
}
while(cin>>c&&c!='.'){
s2[l2]=c;
l2++;
}
dp[0][0]=0;
for(int i=1;i<l1;i++)
for(int j=1;j<l2;j++){
if(s1[i]==s2[j])dp[i][j]=dp[i-1][j-1]+1;
else dp[i][j]=max(dp[i-1][j],dp[i][j-1]);
}
cout<<dp[l1-1][l2-1];
fclose(stdin);
fclose(stdout);
return 0;
}