首页 > 其他 > 详细

HDU 1159 Common Subsequence

时间:2015-07-14 22:16:04      阅读:266      评论:0      收藏:0      [点我收藏+]

思路参考这里

#include<iostream>
#include<string>
#include<cstring>
using namespace std;
#define Size 1000
int table[Size+1][Size+1];
int main()
{
        string A, B;
        while( cin>>A>>B )
        {
                memset( table, 0, sizeof(table) );
                int LenA = A.length();
                int LenB = B.length();
                for( int i=1; i<=LenA; i++ )
                {
                        for( int j=1; j<=LenB; j++ )
                        {
                                if( A[i-1]==B[j-1] )
                                    table[i][j]=table[i-1][j-1]+1;
                                else
                                    table[i][j]= table[i-1][j]>table[i][j-1] ? table[i-1][j] : table[i][j-1];
                        }
                }
                cout<<table[LenA][LenB]<<endl;
        }
        return 0;
}

 

HDU 1159 Common Subsequence

原文:http://www.cnblogs.com/FightForCMU/p/4646604.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!