lightoj 1110 - An Easy LCS (LCS输出路径)

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: :(



大意:给你两个字符串,让你输出字典序最小的最长公共子序列,没有则输出 :(

这题就是LCS的变形,普通只需要计数的LCS的递推公式是:当a[i] == b[j]时,dp[i+1][j+1] = dp[i][j] + 1,这里直接把字符加到后面就可以了,如果a[i] != b[j] 时,和计数型一样,取最长的那一个,如果长度相等的话就取字典序小的那个。

可以看出这里有很多字符串的操作,如果用字符数组存子序列的话会比较麻烦,这里用string就比较方便了。具体看代码。


#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>

using namespace std;

int main(void)
{
    int T,n,m,i,j;
    string dp[110][110];
    char a[110],b[110];
    scanf("%d",&T);
    int cas = 1;
    while(T--)
    {
        scanf("%s%s",a,b);
        n = strlen(a);
        m = strlen(b);
        for(i=0;i<n;i++)
            for(j=0;j<m;j++)
                dp[i][j] = "";
        for(i=0;i<n;i++)
            for(j=0;j<m;j++)
            {
                if(a[i] == b[j])
                    dp[i+1][j+1] = dp[i][j] + a[i];
                else
                {
                    if(dp[i+1][j].size() > dp[i][j+1].size())
                        dp[i+1][j+1] = dp[i+1][j];
                    else if(dp[i+1][j].size() < dp[i][j+1].size())
                        dp[i+1][j+1] = dp[i][j+1];
                    else
                    {
                        if(dp[i+1][j] < dp[i][j+1])
                            dp[i+1][j+1] = dp[i+1][j];
                        else
                            dp[i+1][j+1] = dp[i][j+1];
                    }
                }
            }
        printf("Case %d: ",cas++);
        if(dp[n][m].size())
            cout << dp[i][j];
        else
            printf(":(");
        printf("\n");
    }

}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值