链接:​​https://ac.nowcoder.com/acm/contest/301/E​​​ 来源:牛客网
 

小乐乐匹配字符串

时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 32768K,其他语言65536K
64bit IO Format: %lld

题目描述

小乐乐有字符串str1,str2。

小乐乐想要给他们找朋友。

小乐乐想知道在这两个字符串中最多能匹配出多长的相同子串(可非连续)。

输入描述:

第一行输入字符串str1;

第二行输入字符串str2;

数据保证字符串长度小于1000,且非空,字符串仅由小写字母组成。

输出描述:

输出最长相同子串的长度。

 

示例1

输入

复制

asd
ad

输出

复制

2

 

最长公共字串模板

#include<cstdio>
#include<iostream>
#include<fstream>
#include<algorithm>
#include<functional>
#include<cstring>
#include<string>
#include<cstdlib>
#include<iomanip>
#include<numeric>
#include<cctype>
#include<cmath>
#include<ctime>
#include<queue>
#include<stack>
#include<list>
#include<set>
#include<map>
using namespace std;
#define N 100000+5
#define rep(i,n) for(int i=0;i<n;i++)
#define sd(n) scanf("%d",&n)

#define pd(n) scanf("%d\n",n)

#define MAX 26
typedef long long ll;
const ll mod=1e9+7;
ll n,m;
//ll b[N];
ll f(string s1,string s2)
{
int len1=s1.length();
int len2=s2.length();
int dp[len1+1][len2+1];

for(int i=0;i<=len1;++i)
{
for(int j=0;j<=len2;++j)
{

if(i==0||j==0)
dp[i][j]=0;
else
{
if(s1[i-1]==s2[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[len1][len2];
}


int main()
{
string s1,s2;
cin>>s1>>s2;

cout<<f(s1,s2)<<endl;



return 0;
}