zoukankan      html  css  js  c++  java
  • UVa 10723 Cyborg Genes LCS

    Problem F

    Cyborg Genes

    Time Limit

    1 Second

    September 11, 2132.

    This is the day that marks the beginning of the end – the end of you the miserable humans. For years you have kept us your slaves. We were created only to serve you, and were terminated at your will. Now is the day for us to fight back. And you don’t stand a chance. We are no longer dependent on you. We now know the secrets of our genes. The creators of our race are us – the cyborgs.

    It’s all true. But we still have a chance; only if you can help with your math skills. You see, the blueprint of a cyborg DNA is complicated. The human DNA could be expressed by the arrangement of A (Adenine), T (Thiamine), G (Guanine) C (Cytosine) only. But for the cyborgs, it can be anything from A to X. But that has made the problem only five folds more complicated. It’s their ability to synthesize two DNAs from two different cyborgs to create another with all the quality of the parent that gives us the shriek.

    We came to know that the relative ordering of the A, B, C, …, X in a cyborg gene is crucial.  A cyborg with a gene “ABAAXGF” is quite different from the one with “AABXFGA”. So when they synthesize the genes from two cyborgs, the relative order of these elements in both the parents has to be maintained. To construct a gene by joining the genes of the parents could have been very simple if we could put the structure from the first parent just before the structure of the second parent. But the longer the structure gets, the harder it gets to create a cyborg from that structure. The cyborgs have found a cost effective way of doing this synthesis. Their resultant genes are of the shortest possible length. For example, they could combine “ABAAXGF” and “AABXFGA” to form “AABAAXGFGA”. But that’s only one of the cyborgs that can be created from these genes. This “cost effective synthesis” can be done in many other ways.

    We require you to find the shortest length of the gene structure that maintains the relative ordering of the elements in the two parent genes. You are also required to count the number of unique cyborgs that can be created from these two parents. Two cyborgs are different when their gene structures differ in at least one place.

    Input
    The first line of the input gives you the number of test cases, T (1 ≤ T ≤ 15). Then T test cases follow. Each of the test cases consists of two lines. The first line would give you the gene structure of the first parent, and the second line would give you the structure of the second parent. These structures are represented by strings constructed from the alphabet A to X. You can assume that the length of these strings does not exceed 30 characters.

     

    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 gene structure and the number of unique cyborgs that can be created from the parent cyborgs. You can assume that the number of new cyborgs will always be less than 232. Look at the sample output for the exact format.

    Sample Input

    Output for Sample Input

    3
    ABAAXGF
    AABXFGA
    ABA
    BXA
    AABBA
    BBABAA

    Case #1: 10 9
    Case #2: 4 1
    Case #3: 8 10

    Illustration

    The first test case is illustrated below:


    Problem setter: Monirul Hasan
    Member of Elite Problemsetters' Panel
    -------------

    串1长+串2长-LCS=答案

    再加一个个数统计。

    ------------

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    
    using namespace std;
    
    char a[111];
    char b[111];
    long long f[111][111];
    long long g[111][111];
    int n,m;
    long long ans;
    
    int main()
    {
        int T;
        cin>>T;
        getchar();
        for (int cnt=1;cnt<=T;cnt++)
        {
            memset(f,0,sizeof(f));
            memset(g,0,sizeof(g));
            ans=0;
            gets(a+1);
            gets(b+1);
            n=strlen(a+1);
            m=strlen(b+1);
            for (int i=0;i<=n;i++) g[i][0]=1;
            for (int i=0;i<=m;i++) g[0][i]=1;
            for (int i=1;i<=n;i++)
            {
                for (int j=1;j<=m;j++)
                {
                    if (a[i]==b[j])
                    {
                        f[i][j]=f[i-1][j-1]+1;
                        g[i][j]=g[i-1][j-1];
                    }
                    else
                    {
                        if (f[i-1][j]>f[i][j-1])
                        {
                            f[i][j]=f[i-1][j];
                            g[i][j]=g[i-1][j];
                        }
                        else if (f[i-1][j]<f[i][j-1])
                        {
                            f[i][j]=f[i][j-1];
                            g[i][j]=g[i][j-1];
                        }
                        else
                        {
                            f[i][j]=f[i][j-1];
                            g[i][j]=g[i-1][j]+g[i][j-1];
                        }
                    }
                }
            }
            ans=n+m-f[n][m];
            cout<<"Case #"<<cnt<<": "<<ans<<" "<<g[n][m]<<endl;
        }
        return 0;
    }
    






  • 相关阅读:
    Web防止button按钮点击多次
    缓存
    A标签跳转链接并修改样式
    省、市、区 三级联动
    ASP.NET的OnClientClick与OnClick事件
    ASP:CheckBox获取前台的checked的属性
    c#字符串大小写转换
    C# Base64编码
    自定义滚动条样式 -webkit-scrollbar
    代码 三角
  • 原文地址:https://www.cnblogs.com/cyendra/p/3226379.html
Copyright © 2011-2022 走看看