POJ 2774 Long Long Message 에서 가장 긴 공공 하위 문자열 두 개 구하 기 (접미사 배열)

5126 단어 데이터 구조
클릭 하여 링크 열기
Long Long Message
Time Limit: 4000MS
 
Memory Limit: 131072K
Total Submissions: 19413
 
Accepted: 8019
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

Source
POJ Monthly--2006.03.26,Zeyuan Zhu,"Dedicate to my great beloved mother."
가장 긴 공통 문자열 을 구 할 수 있 도록 두 개의 문자열 을 드 립 니 다. 문자열 의 모든 하위 문자열 은 이 문자열 의 어떤 접두사 의 접두사 입 니 다. A 와 B 의 가장 긴 공통 문자열 은 A 의 접두사 와 B 의 가장 긴 공공 접두사 의 최대 값 을 구 하 는 것 과 같 습 니 다. A 와 B 의 모든 접 두 사 를 매 거 한다 면 효율 이 떨 어 집 니 다. A 의 뒤 를 계산 해 야 하기 때 문 입 니 다.접두사 와 B 접두사 의 가장 긴 공공 접 두 사 는 첫 번 째 문자열 뒤에 두 번 째 문자열 을 쓰 고 중간 에 나타 나 지 않 은 문자 로 구분 한 다음 에 이 새로운 문자 의 접두사 배열 을 구 합 니 다. 그러면 모든 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 |) 입 니 다. 시간 잡 도 는 하한 선 에 이 르 렀 습 니 다. 이 를 통 해 알 수 있 듯 이 이것 은 매우 우수한 알고리즘 입 니 다. 나 수 건의 에서 따 온 '문자열 을 처리 하 는 유력 한 도구' 입 니 다.
//5808K	360MS
#include
#include
#include
#define MAX 200010
#define inf 0x3f3f3f3f
using namespace std;
int sa[MAX],rank[MAX],height[MAX];
int wa[MAX],wb[MAX],wv[MAX],ws[MAX];
int num[MAX];
char s1[MAX],s[MAX];
int len;
int cmp(int *r,int a,int b,int l)
{
    return r[a]==r[b]&&r[a+l]==r[b+l];
}
void get_sa(int *r,int n,int m)// get  
{
    int i,j,p,*x=wa,*y=wb,*t;
    for(i=0; i=0; i--)sa[--ws[x[i]]]=i;
    for(j=1,p=1; p=j)y[p++]=sa[i]-j;
        for(i=0; i=0; i--)sa[--ws[wv[i]]]=y[i];
        for(t=x,x=y,y=t,p=1,x[sa[0]]=0,i=1; imaxx&&((sa[i]len)||(sa[i]>len&&sa[i-1]='a'&&s[i]<='z')num[i]=s[i]-'a'+1;
            else num[i]=28;
        get_sa(num,n+1,30);
        get_height(num,n);
        printf("%d
",solve(n)); } return 0; }

좋은 웹페이지 즐겨찾기