LightOJ 1110 An Easy LCS LCS路径输出

 点击打开链接题目链接

1110 - An Easy LCS
Time Limit: 2 second(s)Memory Limit: 32 MB

LCS means 'Longest Common Subsequence' that means two non-empty strings are given; you have to find the Longest Common Subsequence between them. Since there can be many solutions, you have to print the one which is the lexicographically smallest. Lexicographical order means dictionary order. For example, 'abc' comes before 'abd' but 'aaz' comes before 'abc'.

Input

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

Each case starts with a blank line. The next two lines will contain two strings of length 1 to 100. The strings contain lowercase English characters only.

Output

For each case, print the case number and the lexicographically smallest LCS. If the LCS length is 0 then just print ':('.

Sample Input

Output for Sample Input

3

 

ab

ba

 

zxcvbn

hjgasbznxbzmx

 

you

kjhs

Case 1: a

Case 2: zxb

Case 3: :(

 

开一个三维的ans数组存储每一次的ans
#include<cstdio>
#include<cstring>
int dp[110][110];
char str1[110],str2[110],ans[110][110][110];
int main()
{
    int t,i,j,k;
    int l1,l2;
    while(scanf("%d",&t)!=EOF)
    {
        for(k=1;k<=t;k++)
        {
            scanf("%s",str1+1);
            scanf("%s",str2+1);
            l1=strlen(str1+1);
            l2=strlen(str2+1);
            memset(dp,0,sizeof(dp));
            memset(ans,0,sizeof(ans));
            for(i=1;i<=l1;i++)
            {
                for(j=1;j<=l2;j++)
                {
                    if(str1[i]==str2[j])
                    {
                        dp[i][j]=dp[i-1][j-1]+1;
                        strcpy(ans[i][j],ans[i-1][j-1]);
                        ans[i][j][dp[i-1][j-1]]=str1[i];
                        ans[i][j][dp[i][j]]='\0';
                    }
                    else if(dp[i-1][j]>dp[i][j-1])
                    {
                        strcpy(ans[i][j],ans[i-1][j]);
                        dp[i][j]=dp[i-1][j];
                    }
                    else if(dp[i-1][j]<dp[i][j-1])
                    {
                        strcpy(ans[i][j],ans[i][j-1]);
                        dp[i][j]=dp[i][j-1];
                    }
                    else
                    {
                        dp[i][j]=dp[i][j-1];
                        if(strcmp(ans[i][j-1],ans[i-1][j])>0)
                        {
                            strcpy(ans[i][j],ans[i-1][j]);
                        }
                        else
                        {
                            strcpy(ans[i][j],ans[i][j-1]);
                        }
                    }
                }
            }
            printf("Case %d: ",k);
            if(dp[l1][l2]==0)
            {
                puts(":(");
            }
            else
            {
                puts(ans[l1][l2]);
            }
        }
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值