码迷,mamicode.com
首页 > 其他好文 > 详细

最长公共子序列

时间:2019-11-26 17:41:33      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:ace   color   i++   cto   int   string   har   space   algorithm   

O(n²)

 

#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstdio>
#include<vector>
#include<queue>
#include<string.h>
#include<set>
#include<map>
using namespace std;
const int maxn =1e6+10;

char a[maxn];
char b[maxn];
int f[1006][1006];
int main()
{
    int n,m;
    cin >> n >> m;
    cin >> a+1;
    cin >> b+1;
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=m;j++)
        {
            f[i][j]=max(f[i-1][j],f[i][j-1]);
            if(a[i]==b[j])
                f[i][j]=max(f[i-1][j-1]+1,f[i][j]);
        }
    }
    cout << f[n][m] << endl;
    return 0;
}

 

最长公共子序列

标签:ace   color   i++   cto   int   string   har   space   algorithm   

原文地址:https://www.cnblogs.com/wjc2021/p/11937056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!