题解 | #公共子串计算#

公共子串计算

https://www.nowcoder.com/practice/98dc82c094e043ccb7e0570e5342dd1b

#include<iostream>
#include<string>
#include<vector>
#include<math.h>
// 核心是需要明确dp的准确定义,dp表示以a字符串以i字符结尾时,b字符串以j字符结尾时的最大子序列长度。
using namespace std;

int main(){
    string strs1,strs2;
    getline(cin,strs1);
    getline(cin,strs2);
    int M = strs1.size(),N = strs2.size();
    int maxLen = 0;
    vector<vector<int>>dp(M+1,vector<int>(N+1,0));
    for(int i = 1;i<=M;i++)
    {
        for(int j = 1;j<=N;j++)
        {
            if(strs1[i-1] == strs2[j-1])
            {
                dp[i][j] = dp[i-1][j-1] + 1;
                if(dp[i][j] > maxLen)
                {
                    maxLen = dp[i][j];
                }
            }
            else {
                dp[i][j] = 0;
            }
        }
    }
    cout << maxLen << endl;
}



全部评论

相关推荐

头像
11-18 16:08
福州大学 Java
影流之主:干10年不被裁,我就能拿别人一年的钱了,日子有盼头了
点赞 评论 收藏
分享
10-07 20:48
门头沟学院 Java
听说改名就会有offer:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务