zoukankan      html  css  js  c++  java
  • poj1699 KMP+壮压DP

    Best Sequence
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 6338   Accepted: 2461

    Description

    The twenty-first century is a biology-technology developing century. One of the most attractive and challenging tasks is on the gene project, especially on gene sorting program. Recently we know that a gene is made of DNA. The nucleotide bases from which DNA is built are A(adenine), C(cytosine), G(guanine), and T(thymine). Given several segments of a gene, you are asked to make a shortest sequence from them. The sequence should use all the segments, and you cannot flip any of the segments.

    For example, given 'TCGG', 'GCAG', 'CCGC', 'GATC' and 'ATCG', you can slide the segments in the following way and get a sequence of length 11. It is the shortest sequence (but may be not the only one).

    Input

    The first line is an integer T (1 <= T <= 20), which shows the number of the cases. Then T test cases follow. The first line of every test case contains an integer N (1 <= N <= 10), which represents the number of segments. The following N lines express N segments, respectively. Assuming that the length of any segment is between 1 and 20.

    Output

    For each test case, print a line containing the length of the shortest sequence that can be made from these segments.

    Sample Input

    1
    5
    TCGG
    GCAG
    CCGC
    GATC
    ATCG
    

    Sample Output

    11


    /****************************************/
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    const int INF=0x3f3f3f3f;
    int nxt[22],add[12][12];
    int dp[(1<<12)+5][12];
    char str[12][25];
    void getNext(char *a,int len)
    {
        int i=0,j=-1;
        nxt[0]=-1;
        while(i<len)
        {
            if(j==-1||a[i]==a[j]) nxt[++i]=++j;
            else j=nxt[j];
    
        }
    }
    int kmp(char *a,char *b,int l1,int l2)
    {
        int i=0,j=0;
        while(i<l1)
        {
            if(j==-1||a[i]==b[j]) ++i,++j;
            else j=nxt[j];
        }
        return l2-j;
    }
    int main()
    {
        int n,T;
        for(scanf("%d",&T); T--;)
        {
            scanf("%d",&n);
            for(int i=0; i<n; ++i) scanf("%s",str[i]);
            memset(dp,INF,sizeof(dp));
            for(int i=0; i<n; ++i) dp[(1<<i)][i]=strlen(str[i]);
            for(int i=0; i<n; ++i) for(int j=0; j<n; ++j)
                {
                    getNext(str[j],strlen(str[j]));
                    add[i][j]=kmp(str[i],str[j],strlen(str[i]),strlen(str[j]));
                }
            for(int i=1;i<(1<<n);++i) for(int j=0;j<n;++j) if(dp[i][j]==INF) continue;
            else for(int k=0;k<n;++k) {
                if((1<<k)&i) continue;
                dp[i|(1<<k)][k]=min(dp[(1<<k)|i][k],dp[i][j]+add[j][k]);
            }
            int ans=INF;
            for(int i=0;i<n;++i) ans=min(ans,dp[(1<<n)-1][i]);
            printf("%d
    ",ans);
        }
    }
  • 相关阅读:
    前端试题本(Javascript篇)
    前端知识杂烩(Javascript篇)
    前端知识杂烩(HTML[5]?+CSS篇)
    Javascript实现的数组降维——维度不同,怎么谈恋爱
    你不知道的CSS背景—css背景属性全解
    基于Codeigniter框架实现的APNS批量推送—叮咚,查水表
    CSS布局经典—圣杯布局与双飞翼布局
    JavaScript异步编程的主要解决方案—对不起,我和你不在同一个频率上
    CSS实现元素水平垂直居中—喜欢对称美,这病没得治
    JS实现常用排序算法—经典的轮子值得再造
  • 原文地址:https://www.cnblogs.com/mfys/p/7402231.html
Copyright © 2011-2022 走看看