zoukankan      html  css  js  c++  java
  • Long Long Message POJ

    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

    题意:

    题目这么长就是说,给你两个串,你需要找出来两个串的最长公共部分(听着好像dp的一种最长公共子序列,复杂度nlog(n),不知道做这道题可不可以,应该会TLE)

    题解:

    你把这两个串连在一起然后找出来所有满足下面条件的所有height[i]的值,取最大那个输出

    height[i]就表示排名第i和排名第i-1的后缀最长公共前缀,如果这两个后缀不属于一个串,那么这个长度就可以满足题意,又因为题目让我们找最大的,所以遍历一遍即可

    代码:

     1 #include <cstdlib>
     2 #include <cstring>
     3 #include <cstdio>
     4 #include <algorithm>
     5 using namespace std;
     6 
     7 const int N = 200010;
     8 int x[N], y[N], c[N];
     9 int rank[N], height[N];
    10 int sa[N],s[N],n,k;
    11 char str1[N],str2[N];
    12 bool pan(int *x,int i,int j,int k,int n)
    13 {
    14     int ti=i+k<n?x[i+k]:-1;
    15     int tj=j+k<n?x[j+k]:-1;
    16     return x[i]==x[j]&&ti==tj;
    17 }
    18 void build_SA(int n,int r)
    19 {
    20     int *x=rank,*y=height;
    21     for(int i=0; i<r; i++)c[i]=0;
    22     for(int i=0; i<n; i++)c[s[i]]++;
    23     for(int i=1; i<r; i++)c[i]+=c[i-1];
    24     for(int i=n-1; i>=0; i--)sa[--c[s[i]]]=i;
    25     r=1;
    26     x[sa[0]]=0;
    27     for(int i=1; i<n; i++)
    28         x[sa[i]]=s[sa[i]]==s[sa[i-1]]?r-1:r++;
    29     for(int k=1; r<n; k<<=1)
    30     {
    31         int yn=0;
    32         for(int i=n-k; i<n; i++)y[yn++]=i;
    33         for(int i=0; i<n; i++)
    34             if(sa[i]>=k)y[yn++]=sa[i]-k;
    35         for(int i=0; i<r; i++)c[i]=0;
    36         for(int i=0; i<n; i++)++c[x[y[i]]];
    37         for(int i=1; i<r; i++)c[i]+=c[i-1];
    38         for(int i=n-1; i>=0; i--)sa[--c[x[y[i]]]]=y[i];
    39         swap(x,y);
    40         r=1;
    41         x[sa[0]]=0;
    42         for(int i=1; i<n; i++)
    43             x[sa[i]]=pan(y,sa[i],sa[i-1],k,n)?r-1:r++;
    44     }
    45     for(int i=0; i<n; i++)rank[i]=x[i];
    46 }
    47 void get_height(int n)
    48 {
    49     int i,j,k=0;
    50     for(i=1; i<=n; i++)rank[sa[i]]=i;
    51     for(i=0; i<n; i++)
    52     {
    53         if(k)k--;
    54         else k=0;
    55         j=sa[rank[i]-1];
    56         while(s[i+k]==s[j+k])k++;
    57         height[rank[i]]=k;
    58     }
    59 }
    60 int main()
    61 {
    62     scanf("%s%s",str1,str2);
    63     int len=strlen(str1);
    64     n=0;
    65     for(int i=0;i<len;++i)
    66         s[n++]=str1[i];
    67     len=strlen(str2);
    68     for(int j=0;j<len;++j)
    69         s[n++]=str2[j];
    70     s[n]='0';
    71 
    72     build_SA(n+1,N);
    73     get_height(n);
    74     len=strlen(str1);
    75     int maxx=0;
    76     for(int i=2;i<=n;++i)
    77     {
    78         if(maxx<height[i])
    79         {
    80             if((sa[i]<len && sa[i-1]<len) || (sa[i]>=len && sa[i-1]>=len))
    81                 continue;
    82             else maxx=height[i];
    83         }
    84     }
    85     printf("%d
    ",maxx);
    86     return 0;
    87 }
  • 相关阅读:
    随笔
    我的舅舅
    代码规范
    SpringMVC_乱码问题
    SpringMVC_接受请求及数据回显
    Restful风格
    第六周总结
    SpringMVC_控制器
    SpringMVC_初次使用
    SpringMVC_简介
  • 原文地址:https://www.cnblogs.com/kongbursi-2292702937/p/12326633.html
Copyright © 2011-2022 走看看