您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
思路:dp[i][j]的含义为str1[0..i]与str2[0..j]的最长公共子序列长度.
#include<iostream>
#include<string>
using namespace std;
const int maxn = 100;
int main()
{
string str1,str2;
cin>>str1;
cin>>str2;
int dp[maxn][maxn];
for(int i = 0; i < str1.length(); i++)
{
if(dp[i - 1][0] == 1)
{
dp[i][0] = 1;
continue;
}
if(str1[i] == str2[0])
{
dp[i][0] = 1;
}
else
dp[i][0] = 0;
}
for(int j = 0; j < str2.length(); j++)
{
if(dp[0][j -1] == 1)
{
dp[0][j] = 1;
continue;
}
if(str1[0] == str2[j])
{
dp[0][j] = 1;
}
else
dp[0][j] = 0;
}
for(int i = 1; i < str1.length(); i++)
{
for(int j = 1; j < str2.length(); j++)
{
if(str1[i] == str2[j])
dp[i][j] = max(max(dp[i -1][j],dp[i][j - 1]),dp[i-1][j-1]+1);
else
dp[i][j] = max(dp[i - 1][j],dp[i][j - 1]);
}
}
cout<<dp[str1.length() - 1][str2.length() - 1]<<endl;
return 0;
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。