zoukankan      html  css  js  c++  java
  • POJ2774 后缀数组

    Long Long Message

    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
    题意:求两个字符串最大公共长度。
    思路:后缀数组。(摘自罗穗骞的国家集训队论文)字符串的任何一个子串都是这个字符串的某个后缀的前缀。求 A 和 B 的最长公共子串等价于求 A 的后缀和 B 的后缀的最长公共前缀的最大值。如果枚举A和 B 的所有的后缀,那么这样做显然效率低下。由于要计算 A 的后缀和 B 的后缀的最长公共前缀,所以先将第二个字符串写在第一个字符串后面,中间用一个没有出现过的字符隔开,再求这个新的字符串的后缀数组。观察一下,看看能不能从这个新的字符串的后缀数组中找到一些规律。以 A=“ aaaba ”,B=“ abaa ”为例,如图 8 所示。
        
        那么是不是所有的 height 值中的最大值就是答案呢?不一定!有可能这两个后缀是在同一个字符串中的,所以实际上只有当suffix(sa[i-1])和suffix(sa[i]) 不是同一个字符串中的两个后缀时,height[i]才是满足条件的。而这其中的最大值就是答案。记字符串 A 和字符串 B 的长度分别为|A|和|B|。求新的字符串的后缀数组和 height 数组的时间是 O(|A|+|B|) ,然后求排名相邻 但原来不在同一个字符串中的两个后缀的height值的最大值,时间也是O(|A|+|B|),所以整个做法的时间复杂度为 O(|A|+|B|) 。时间复杂度已经取到下限,由此看出,这是一个非常优秀的算法。
     
     1 /*
     2 后缀数组就是套模板求先应得数组,这题用到了两个数组,分别是sa[],height[];
     3 sa[i]表示所有后缀按字典数排序后以s[i]开始的后缀排在第i位。height[i]表示
     4 字典数为i和i-1后缀的的最长串的前缀。
     5 */
     6 
     7 #include <iostream>
     8 #include <stdio.h>
     9 #include <string.h>
    10 #include <algorithm>
    11 using namespace std;
    12 const int MAX = 2e5+10;
    13 char str[MAX];
    14 int s[MAX], sa[MAX], t[MAX], t2[MAX], c[MAX], n;
    15 int rank1[MAX], height[MAX];
    16 
    17 void build_sa(int m) {
    18     int *x = t, *y = t2;
    19     for(int i = 0; i < m; i ++) c[i] = 0;
    20     for(int i = 0; i < n; i ++) c[x[i]=s[i]] ++;
    21     for(int i = 1; i < m; i ++) c[i] += c[i-1];
    22     for(int i = n-1; i >= 0; i --) sa[--c[x[i]]] = i;
    23     for(int k = 1; k <= n; k <<= 1) {
    24         int p = 0;
    25         for(int i = n-k; i < n; i ++) y[p++] = i;
    26         for(int i = 0; i < n; i ++) if(sa[i] >= k) y[p++] = sa[i] - k;
    27         for(int i = 0; i < m; i ++) c[i] = 0;
    28         for(int i = 0; i < n; i ++) c[x[y[i]]]++;
    29         for(int i = 1; i < m; i ++) c[i] += c[i-1];
    30         for(int i = n-1; i >= 0; i --) sa[--c[x[y[i]]]] = y[i];
    31         swap(x,y);
    32         p = 1;
    33         x[sa[0]] = 0;
    34         for(int i = 1; i < n; i ++)
    35             x[sa[i]] = y[sa[i-1]] == y[sa[i]] && y[sa[i-1]+k] == y[sa[i]+k]?p-1:p++;
    36         if(p >= n)break;
    37         m = p;
    38     }
    39 }
    40 void getHeight() {
    41     int k = 0;
    42     for(int i = 0; i < n; i ++) rank1[sa[i]] = i;
    43     for(int i = 0; i < n; i ++) {
    44         if(k) k--;
    45         int j = sa[rank1[i]-1];
    46         while(s[i+k] == s[j+k]) k++;
    47         height[rank1[i]] = k;
    48     }
    49 }
    50 int main() {
    51     n = 0;
    52     int l1, l2;
    53     scanf("%s",str);
    54     l1 = strlen(str);
    55     for(int i = 0; i < l1; i ++) s[n++] = str[i] - 'a' + 1;
    56     s[n++] = 28;
    57     scanf("%s",str);
    58     l2 = strlen(str);
    59     for(int i = 0; i < l2; i ++) s[n++] = str[i] - 'a' + 1;
    60     s[n++] = 0;
    61     build_sa(30);
    62     getHeight();
    63     int maxn = 0;
    64     for(int i = 2; i < n; i ++) {
    65         if(maxn < height[i]) {
    66             if(sa[i] >= 0 && sa[i] < l1 && sa[i-1] > l1)
    67                 maxn = height[i];
    68             if(sa[i-1] >= 0 && sa[i-1] < l1 && sa[i] > l1)
    69                 maxn = height[i];
    70         }
    71     }
    72     printf("%d
    ",maxn);
    73     return 0;
    74 }
  • 相关阅读:
    vim 打开了没有权限写入的文件,怎么才能不必重新编辑
    Linux 关闭终端响铃的特性
    Python 的 print 函数
    C 语言标准库中的qsort函数使用
    java知识学习14-面向对象
    java知识学习13-方法
    java知识学习12-数组
    mac格式化重装系统
    java知识学习11- IDEA
    java知识学习10-跳转控制语句(break/continue)、循环嵌套、Random
  • 原文地址:https://www.cnblogs.com/xingkongyihao/p/7257470.html
Copyright © 2011-2022 走看看