zoukankan      html  css  js  c++  java
  • Long Long Message (poj2774 后缀数组求最长公共子串)

    Long Long Message
    Time Limit: 4000MS   Memory Limit: 131072K
    Total Submissions: 19206   Accepted: 7934
    Case Time Limit: 1000MS

    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

     1 #include <iostream>
     2 #include <stdio.h>
     3 #include <math.h>
     4 #include <vector>
     5 #include <string.h>
     6 using namespace std;
     7 #define N 2100000
     8 char a[N];
     9 int c[N],d[N],e[N],sa[N],height[N],n,b[N],m,t;
    10 int cmp(int *r,int a,int b,int l)
    11 {
    12     return r[a]==r[b]&&r[a+l]==r[b+l];
    13 }
    14 void da()
    15 {
    16     int i,j,p,*x=c,*y=d,*t;
    17     memset(b,0,sizeof(b));
    18     for(i=0; i<n; i++)b[x[i]=a[i]]++;
    19     for(i=1; i<m; i++)b[i]+=b[i-1];
    20     for(i=n-1; i>=0; i--)sa[--b[x[i]]]=i;
    21     for(j=1,p=1; p<n; j*=2,m=p)
    22     {
    23         for(p=0,i=n-j; i<n; i++)y[p++]=i;
    24         for(i=0; i<n; i++)if(sa[i]>=j)y[p++]=sa[i]-j;
    25         for(i=0; i<n; i++)e[i]=x[y[i]];
    26         for(i=0; i<m; i++)b[i]=0;
    27         for(i=0; i<n; i++)b[e[i]]++;
    28         for(i=1; i<m; i++)b[i]+=b[i-1];
    29         for(i=n-1; i>=0; i--)sa[--b[e[i]]]=y[i];
    30         for(t=x,x=y,y=t,p=1,x[sa[0]]=0,i=1; i<n; i++)
    31             x[sa[i]]=cmp(y,sa[i-1],sa[i],j)?p-1:p++;
    32     }
    33 }
    34 void callheight()
    35 {
    36     int i,j,k=0;
    37     b[0]=0;
    38     for(i=1; i<n; i++)b[sa[i]]=i;
    39     for(i=0; i<n-1; height[b[i++]]=k)
    40         for(k?k--:0,j=sa[b[i]-1]; a[i+k]==a[j+k]; k++);
    41 }
    42 bool check(int x,int y)
    43 {
    44     if(x>y)swap(x,y);
    45     if(x<t&&y>t)return 1;
    46     else return 0;
    47 }
    48 int main()
    49 {
    50 
    51     scanf("%s",a);
    52     t=n=strlen(a);
    53     a[n]='#';
    54     scanf("%s",a+n+1);
    55     n=1+strlen(a);
    56     m=150;
    57     da();
    58     callheight();
    59     int max=0;
    60     for(int i=1;i<n;i++)
    61     {
    62         if(height[i]>max&&check(sa[i],sa[i-1]))
    63         max=height[i];
    64     }
    65     printf("%d
    ",max);
    66 }
    View Code
  • 相关阅读:
    【转载】Python未来互联网主流语言! . 天高地厚
    Android系统Intent的使用(转)
    android:获取联系人信息(姓名和电话)
    CMNET和CMWAP区别(转)
    Android界面开发推荐颜色
    android : framelayout 研究
    android : drag and drop ui
    android 四种模式研究之一
    ListView与CheckBox,EditText,Button结合
    android 之 custom view(一)
  • 原文地址:https://www.cnblogs.com/ERKE/p/3598503.html
Copyright © 2011-2022 走看看