HDU 1159 Common Subsequence

Common Subsequence

  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, x ij = 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
abcfbc abfcab
programming contest 
abcd mnp
Sample Output
  4
  2
  0

解题思路:
  本题有多组测试数据,每组数据给出两个字符串要求求出两个字符串的最长公共子序列长度如样例abcfbc abfcab 最长公共子串abfb长度为4。

  用一个数组dp[ i ][ j ]记录以第一个字符串第 i 位结尾的字符串与以第二个字符串第 j 位为结尾的字符串的最长公共子串长度。根据动态规划思想对于每个dp[ i ][ j ]可以分成两种情况。

  1、若 i j 所对应的字符相等,则该问题可以转化为求在第一个字符串中以 i 的前一个字符为结尾, 在第二个字符串中以 j 的前一个字符为结尾的最长公共子串 + 1。

  2、若 i j 所对应的字符不等,则该问题转化为求在第一个字符串中以 i 的前一个字符为结尾, 在第二个字符串中以 j 为结尾的最长公共子串,与在第一个字符串中以 i 为结尾, 在第二个字符串中以 j 的前一个字符为结尾的最长公共子串两者的最大值问题。

动态转移方程:

  1、dp[ i ][ j ] = d[ i - 1][ j - 1] + 1  (str1[ i ] == str2[ j ]) 

  2、dp[ i ][ j ] = max(dp[ i - 1][ j ] , dp[ i ][ j - 1][ i ])  (str1[ i ] != str2[ j ])

  在运算中只要有一个数组结尾位下标为0那么无论谁与它的最长公共子串长度都为0,这便是边界条件,即所有的dp[][0],dp[0][]为0。

 1 //#include <bits/stdc++.h>  编译错误
 2 #include <iostream>
 3 #include <string>
 4 #include <cstring>
 5 #include <cstdio>
 6 using namespace std;
 7 const int maxn = 1e4 + 100;
 8 string tstr1, tstr2, str1, str2;    
 9 //我们需要的字符串下标从1开始,所以先用tstr1 与 tstr2记录用户输入
10 //str1 str2为需要参与运算的字符串
11 int dp[maxn][maxn];
12 int main()
13 {
14     while(cin >> tstr1){
15         str1 = str2 = "";   //每次计算开始前使str1 str2为空
16         cin >> tstr2;
17         str1 += "*";    //为了方便运算str1首位随便加一个字符
18         str1 += tstr1;  //将先前记录的tstr1加入str1末尾
19         str2 += "0";    //str2与str1操作相同
20         str2 += tstr2;
21         int len1 = str1.size() - 1; //获取str1有效位长度(第一位没用)
22         int len2 = str2.size() - 1; //获取str2有效位长度(第一位没用)
23         //初始化dp数组的边界值
24         //这里不能用memset,如果使用的话会超内存
25         for(int i = 0; i <= len1; i++){
26             dp[i][0] = 0;
27         }
28         for(int i = 0; i <= len2; i++){
29             dp[0][i] = 0;
30         }
31         //遍历所有情况
32         for(int i = 1; i <= len1; i++){
33             for(int j = 1; j <= len2; j++){
34                 if(str1[i] == str2[j])
35                     dp[i][j] = dp[i - 1][j - 1] + 1;
36                 else if(str1[i] != str2[j]){
37                     dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]);
38                 }
39             }
40         }
41         printf("%d\n", dp[len1][len2]);
42     }
43     return 0;
44 }

 

posted @ 2018-11-08 19:03  suvvm  阅读(240)  评论(0编辑  收藏  举报