| Time Limit: 2 second(s) | Memory Limit: 32 MB |
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 |
import java.util.*;
public class Main {
static int T,n,m,ans;
static char[] aa,bb;
static int[][] dp=new int[35][35];
static long[][] ff=new long[35][35];
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
T=in.nextInt();
for(int t=1;t<=T;t++)
{
aa=(" "+in.next()).toCharArray();
bb=(" "+in.next()).toCharArray();
n=aa.length-1;m=bb.length-1;
for(int i=0;i<=n;i++) ff[i][0]=1;
for(int i=0;i<=m;i++) ff[0][i]=1;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
{
if(aa[i]==bb[j])
{
dp[i][j]=dp[i-1][j-1]+1;
ff[i][j]=ff[i-1][j-1];
}
else
{
dp[i][j]=Math.max(dp[i-1][j],dp[i][j-1]);
ff[i][j]=0;
if(dp[i][j-1]>=dp[i-1][j])
ff[i][j]+=ff[i][j-1];
if(dp[i][j-1]<=dp[i-1][j])
ff[i][j]+=ff[i-1][j];
}
}
ans=n+m-dp[n][m];
System.out.println("Case "+t+": "+ans+" "+ff[n][m]);
}
}
}
探讨了如何通过计算两个名字的最短公共子序列来评估它们之间的“爱情百分比”。该算法首先确定最短子序列的长度,然后计算所有可能的唯一最短子序列的数量。

240

被折叠的 条评论
为什么被折叠?



