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

HDU1159 && POJ1458 Common Subsequence (LCS模版题)

时间:2015-04-17 22:21:07      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:poj   hdu   1159   1458   c++   

题目大意:求出两个串的公共子序列的长度

LCS的入门题,读懂题了直接模板就可以

#include <iostream>
#include <cstring>

using namespace std;

const int N=1000;
int a[N][N];

int LCS(const char *s1, const char *s2)
{// s1:0...m, s2:0...n
    int m = strlen(s1), n = strlen(s2);
    int i, j;
    a[0][0] = 0;
    for( i=1; i <= m; ++i ) a[i][0] = 0;
    for( i=1; i <= n; ++i ) a[0][i] = 0;
    for( i=1; i <= m; ++i )
        for( j=1; j <= n; ++j ){
            if(s1[i-1]==s2[j-1]) a[i][j] = a[i-1][j-1]+1;
            else if(a[i-1][j]>a[i][j-1])a[i][j]= a[i-1][j];
            else a[i][j] = a[i][j-1];
        }
    return a[m][n];
}

int main()
{
    char s1[N], s2[N];
    while(cin>>s1>>s2)
        cout<<LCS(s1, s2)<<endl;
    return 0;
}


HDU1159 && POJ1458 Common Subsequence (LCS模版题)

标签:poj   hdu   1159   1458   c++   

原文地址:http://blog.csdn.net/wangxinxin_/article/details/45101885

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