Light oj 1159 - Batman(三维 LCS)

来源:互联网 发布:java 写html文件 编辑:程序博客网 时间:2024/04/20 19:11

1159 - Batman
PDF (English)StatisticsForum
Time Limit: 2 second(s)Memory Limit: 32 MB

Batman is in deep trouble. You know that superheroes are there to help you when you are in trouble. But in Gotham city there is no trouble. So, 'no trouble' is actually the trouble for our Batman.

So, Batman is trying to solve ACM problems because he wants to be a good programmer like you :). But alas! He is not that smart. But still he is trying. He found 3 strings of characters. Now he wants to find the maximum string which is contained in all the three strings as a sub sequence. He wants to find the maximum length, not the sequence.

Now, Batman claims that he is a better programmer than you. So, you are solving the same problem. Can you solve faster? You are guaranteed that Batman will need 3 hours to solve the problem. So, you have to be faster than him.

Input

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

Each case will contain a blank line and three strings in three lines. None of the string lengths will be greater than 50 and less than 1. And the string will contain alphanumeric characters only.

Output

For each case, print one line containing the case number and the length of the largest subsequence.

Sample Input

Output for Sample Input

3

 

abcdef

cdef

dcdef

 

aaaa

bbbb

ccca

 

aaaa

aaaa

aaa

Case 1: 4

Case 2: 0

Case 3: 3

 


PROBLEM SETTER: JANE ALAM JAN

#pragma comment(linker, "/STACK:1024000000,1024000000")#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<cmath>#include<queue>#include<stack>#include<vector>#include<set>#include<map>#define L(x) (x<<1)#define R(x) (x<<1|1)#define MID(x,y) ((x+y)>>1)#define bug printf("hihi\n")#define eps 1e-8typedef long long ll;using namespace std;#define INF 0x3f3f3f3f#define N 60char a[N],b[N],c[N];int dp[N][N][N];int main(){    int i,j,t,k,ca=0;    scanf("%d",&t);    while(t--)    {        scanf("%s%s%s",a+1,b+1,c+1);        int lena=strlen(a+1);        int lenb=strlen(b+1);        int lenc=strlen(c+1);        memset(dp,0,sizeof(dp));        for(i=1;i<=lena;i++)            for(j=1;j<=lenb;j++)               for(k=1;k<=lenc;k++)                    if(a[i]==b[j]&&b[j]==c[k])                         dp[i][j][k]=dp[i-1][j-1][k-1]+1;                    else                         dp[i][j][k]=max(max(dp[i-1][j][k],dp[i][j-1][k]),dp[i][j][k-1]);        printf("Case %d: %d\n",++ca,dp[lena][lenb][lenc]);    }    return 0;}





0 0