POJ1458

Written by    17:39 February 1, 2016 
Common Subsequence
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 44778 Accepted: 18346

Description

A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = < x1, x2, …, xm > another sequence Z = < z1, z2, …, zk > is a subsequence of X if there exists a strictly increasing sequence < i1, i2, …, ik > of indices of X such that for all j = 1,2,…,k, xij = zj. For example, Z = < a, b, f, c > is a subsequence of X = < a, b, c, f, b, c > with index sequence < 1, 2, 4, 6 >. Given two sequences X and Y the problem is to find the length of the maximum-length common subsequence of X and Y.

Input

The program input is from the std input. Each data set in the input contains two strings representing the given sequences. The sequences are separated by any number of white spaces. The input data are correct.

Output

For each set of data the program prints on the standard output the length of the maximum-length common subsequence from the beginning of a separate line.

Sample Input

Sample Output

Source

思路

题目的意思就是给定两个字符串S1、S2,定义子串中的每一个元素都能够在父串中找到并且顺序一致(但是不要求在父串中连续)。

用一个二维数组MAXLEN[i][j]记录长度为i的S1前缀和长度为j的S2前缀的最长公共字串,然后就可以得到递推关系:

if S1[i] == S2[j]

MAXLEN[i][j] = MAXLEN[i-1][j-1] + 1;

else

MAXLEN[i][j] = max( MAXLEN[i][j-1], MAXLEN[i-1][j]);

题目所求的就是MAXLEN[ S1.length() ][ S2.length() ], 这样就可以在O(m*n)的复杂度下解决了。

代码

 

 

Category : acmstudy

Tags :