• poj 2774


    Description

    The little cat is majoring in physics in the capital of Byterland. A piece of sad news comes to him these days: his mother is getting ill. Being worried about spending so much on railway tickets (Byterland is such a big country, and he has to spend 16 shours on train to his hometown), he decided only to send SMS with his mother. 

    The little cat lives in an unrich family, so he frequently comes to the mobile service center, to check how much money he has spent on SMS. Yesterday, the computer of service center was broken, and printed two very long messages. The brilliant little cat soon found out: 

    1. All characters in messages are lowercase Latin letters, without punctuations and spaces. 
    2. All SMS has been appended to each other – (i+1)-th SMS comes directly after the i-th one – that is why those two messages are quite long. 
    3. His own SMS has been appended together, but possibly a great many redundancy characters appear leftwards and rightwards due to the broken computer. 
    E.g: if his SMS is “motheriloveyou”, either long message printed by that machine, would possibly be one of “hahamotheriloveyou”, “motheriloveyoureally”, “motheriloveyouornot”, “bbbmotheriloveyouaaa”, etc. 
    4. For these broken issues, the little cat has printed his original text twice (so there appears two very long messages). Even though the original text remains the same in two printed messages, the redundancy characters on both sides would be possibly different. 

    You are given those two very long messages, and you have to output the length of the longest possible original text written by the little cat. 

    Background: 
    The SMS in Byterland mobile service are charging in dollars-per-byte. That is why the little cat is worrying about how long could the longest original text be. 

    Why ask you to write a program? There are four resions: 
    1. The little cat is so busy these days with physics lessons; 
    2. The little cat wants to keep what he said to his mother seceret; 
    3. POJ is such a great Online Judge; 
    4. The little cat wants to earn some money from POJ, and try to persuade his mother to see the doctor :( 

    Input

    Two strings with lowercase letters on two of the input lines individually. Number of characters in each one will never exceed 100000.

    Output

    A single line with a single integer number – what is the maximum length of the original text written by the little cat.

    Sample Input

    yeshowmuchiloveyoumydearmotherreallyicannotbelieveit
    yeaphowmuchiloveyoumydearmother
    

    Sample Output

    27


    调了一个晚上,终于写出一份自己风格的SA

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #define MN 200003
    using namespace std;
    
    int n,m=0;
    char s1[MN];
    int s[MN],ss[MN];
    int v[MN],sa[MN],q[MN],rank[MN],h[MN],mmh=0,len;
    inline void gr(int x){
        rank[sa[1]]=1;
        for (int i=2;i<=m;i++) rank[sa[i]]=(s[sa[i]]==s[sa[i-1]]&&s[sa[i]+x]==s[sa[i-1]+x])?rank[sa[i-1]]:rank[sa[i-1]]+1;
        for (int i=1;i<=m;i++) s[i]=rank[i];
    }
    inline void gv(){memset(v,0,sizeof(v));for (int i=1;i<=m;i++) v[s[i]]++;for (int i=1;i<=2e5;i++)v[i]+=v[i-1];}
    inline void gsa(){
        gv();for (int i=m;i>=1;i--) sa[v[s[i]]--]=i;gr(0);
        for (int i=1;i<m;i<<=1){
            gv();for (int j=m;j>=1;j--) if (sa[j]>i) q[v[s[sa[j]-i]]--]=sa[j]-i;
            for (int j=m-i+1;j<=m;j++) q[v[s[j]]--]=j;
            for (int j=1;j<=m;j++) sa[j]=q[j];gr(i);
            if (rank[sa[m]]==m) return;
        }
    }
    inline void gh(){for (int i=1,k=0,j;i<=m;h[rank[i++]]=k) for (k?k--:0,j=sa[rank[i]-1];ss[i+k]==ss[j+k]&&i+k<=m&&j+k<=m;k++);}
    int main(){
        scanf("%s",s1);
        len=n=strlen(s1);
        for (int i=0;i<n;i++) s[++m]=s1[i]-'a'+1;
        scanf("%s",s1);
        s[++m]=29;
        n=strlen(s1);
        for (int i=0;i<n;i++) s[++m]=s1[i]-'a'+1;
        for (int j=1;j<=m;j++) ss[j]=s[j];
        gsa();gh();
        for (int i=2;i<=m;i++)
        if (mmh<h[i]&&((sa[i]<=len&&sa[i-1]>len)||(sa[i-1]<=len&&sa[i]>len))) mmh=h[i];
        printf("%d
    ",mmh);
    }
    5288K 563MS G++
    
    
    

    还有SAM写法(并不是很理解)

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #define MN 200000
    using namespace std;
    
    struct po{
        int t[26],f,l;
        po(){
            memset(t,0,sizeof(t));
            f=-1;l=0;
        }
    }t[MN];
    int num=0,n,la=0;
    char s[MN];
    inline void add(int x){
        int p=++num,o,ne;
        t[p].l=t[la].l+1;
        while (la!=-1&&!t[la].t[x]) t[la].t[x]=p,la=t[la].f;
        if (la==-1) t[p].f=0;else{
            o=t[la].t[x];
            if (t[o].l==t[la].l+1) t[p].f=o;else{
                ne=++num;
                t[ne]=t[o];
                t[ne].l=t[la].l+1;
                t[o].f=t[p].f=ne;
                while (la!=-1&&t[la].t[x]==o) t[la].t[x]=ne,la=t[la].f;
            }
        }
        la=p;
    }
    int main(){
        scanf("%s",s);n=strlen(s);
        for (int i=0;i<n;i++) add(s[i]-'a');
        scanf("%s",s);n=strlen(s);
        int p=0,mmh=0,MMH=0;
        for (int i=0;i<n;i++){
            la=s[i]-'a';
            if (t[p].t[la]) p=t[p].t[la],mmh++;else{
                while (p!=-1&&!t[p].t[la]) p=t[p].f;
                if (p==-1) mmh=0,p=0;else mmh=t[p].l+1,p=t[p].t[la];
            }
            if (mmh>MMH) MMH=mmh;
        }
        printf("%d
    ",MMH);
    }
    22420K 235MS G++ 912B
     
  • 相关阅读:
    tiff遥感图像空间坐标转换(工作太忙,仅仅作为记录)
    get_beijing_roadnetwork(工作太忙,仅仅作为记录)
    xml_result_2_taos_db(工作太忙,仅仅作为记录)
    Hadoop HDFS原理详解(系统性回顾)
    基于Mapreduce数据排序
    Hadoop-Mapreduce-英文单词计数(Brief版本-超详细解读)
    Hadoop-Mapreduce-英文单词计数
    常见数据类型-HadoopDataType(仅仅作为记录)
    GeoServer 一键发布 Raster 数据服务(分片上传、GDAL)
    GeoServer 安装、跨域
  • 原文地址:https://www.cnblogs.com/Enceladus/p/5459820.html
Copyright © 2020-2023  润新知