light Oj 1013 - Love Calculator (dp)

http://lightoj.com/volume_showproblem.php?problem=1013

1013 - Love Calculator

Yes, you are developing a 'Love calculator'. The software would be quite complex such that nobody could crack the exact behavior of the software.

So, given two names your software will generate the percentage of their 'love' according to their names. The software requires the following things:

1.                  The length of the shortest string that contains the names as subsequence.

2.                   Total number of unique shortest strings which contain the names as subsequence.

Now your task is to find these parts.

Input

Input starts with an integer T (≤ 125), denoting the number of test cases.

Each of the test cases consists of two lines each containing a name. The names will contain no more than 30 capital letters.

Output

For each of the test cases, you need to print one line of output. The output for each test case starts with the test case number, followed by the shortest length of the string and the number of unique strings that satisfies the given conditions.

You can assume that the number of unique strings will always be less than 263. Look at the sample output for the exact format.

Sample Input

Output for Sample Input

3

USA

USSR

LAILI

MAJNU

SHAHJAHAN

MOMTAJ

Case 1: 5 3

Case 2: 9 40

Case 3: 13 15

 

当两个字符串某位置的字母相同的时候,k位置只能填一种字符,当不相等的时候,可以从str1中选,也可以从str2中选,所有状态转移方程为
dp[i][j][k] += dp[i-1][j-1][k-1]
dp[i][j][k] += dp[i-1][j][k-1] + dp[i][j-1][k-1];
#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <limits>
#include <queue>
#include <stack>
#include <vector>
#include <map>

using namespace std;
typedef long long LL;

#define N 40
#define INF 0x3f3f3f3f
#define PI acos (-1.0)
#define EPS 1e-5
#define MOD 10007
#define met(a, b) memset (a, b, sizeof (a))

LL dp[N][N][100];
char str1[N], str2[N];

int main ()
{
    int t, nCase = 1;

    scanf ("%d", &t);

    while (t--)
    {
        met (dp, 0);
        scanf ("%s %s", str1+1, str2+1);

        int len1 = strlen (str1+1), len2 = strlen (str2+1);

        for (int i=0; i<=len1; i++) dp[i][0][i] = 1;
        for (int i=0; i<=len2; i++) dp[0][i][i] = 1;

        for (int k=1; k<=len1+len2; k++)
        {
            for (int i=1; i<=len1; i++)
            {
                for (int j=1; j<=len2; j++)
                {
                    if (str1[i] == str2[j])
                        dp[i][j][k] += dp[i-1][j-1][k-1];
                    else
                        dp[i][j][k] += dp[i-1][j][k-1] + dp[i][j-1][k-1];
                }
            }
        }

        for (int i=1; i<=len1+len2; i++)
            if (dp[len1][len2][i])
            {
                printf ("Case %d: %d %lld\n", nCase++, i, dp[len1][len2][i]);
                break;
            }
    }
    return 0;
}



你可能感兴趣的:(light Oj 1013 - Love Calculator (dp))