POJ1458 간단한 동적 기획: 최장자 서열 구하기

755 단어
제목의 뜻이 분명하니 말하지 않겠다.
#include <iostream>
#include <map>
#include <string>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
int dp[1100][1100];
int main()
{
    int i,j,l1,l2;
    string s1,s2;
    while(cin>>s1>>s2)
    {
        memset(dp,0,sizeof(dp));
        l1=s1.length();
        l2=s2.length();
        for(i=0;i<l1;i++)
            for(j=0;j<l2;j++)
            {
                if(s1[i]==s2[j]) dp[i+1][j+1]=dp[i][j]+1; //       s1  i ,   s2  j          
                else dp[i+1][j+1]=max(dp[i][j+1],dp[i+1][j]);
            }
        cout<<dp[l1][l2]<<endl;
    }
    return 0;
}

좋은 웹페이지 즐겨찾기