题目描述

The cows enjoy mooing at the barn because their moos echo back, although sometimes not completely. Bessie, ever the excellent

secretary, has been recording the exact wording of the moo as it goes out and returns. She is curious as to just how much overlap there is.

Given two lines of input (letters from the set a..z, total length in the range 1..80), each of which has the wording of a moo on it, determine the greatest number of characters of overlap between one string and the other. A string is an overlap between two other strings if it is a prefix of one string and a suffix of the other string.

By way of example, consider two moos:

moyooyoxyzooo

yzoooqyasdfljkamo

The last part of the first string overlaps 'yzooo' with the first part of the second string. The last part of the second string

overlaps 'mo' with the first part of the first string. The largest overlap is 'yzooo' whose length is 5.

POINTS: 50

奶牛们非常享受在牛栏中哞叫,因为她们可以听到她们哞声的回音。虽然有时候并不能完全听到完整的回音。Bessie曾经是一个出色的秘书,所以她精确地纪录了所有的哞叫声及其回声。她很好奇到底两个声音的重复部份有多长。

输入两个字符串(长度为1到80个字母),表示两个哞叫声。你要确定最长的重复部份的长度。两个字符串的重复部份指的是同时是一个字符串的前缀和另一个字符串的后缀的字符串。

我们通过一个例子来理解题目。考虑下面的两个哞声:

moyooyoxyzooo

yzoooqyasdfljkamo

第一个串的最后的部份"yzooo"跟第二个串的第一部份重复。第二个串的最后的部份"mo"跟第一个串的第一部份重复。所以"yzooo"跟"mo"都是这2个串的重复部份。其中,"yzooo"比较长,所以最长的重复部份的长度就是5。

输入格式

* Lines 1..2: Each line has the text of a moo or its echo

输出格式

* Line 1: A single line with a single integer that is the length of the longest overlap between the front of one string and end of the other.

输入输出样例

输入 #1复制

abcxxxxabcxabcd 
abcdxabcxxxxabcx 

输出 #1复制

11 

说明/提示

'abcxxxxabcx' is a prefix of the first string and a suffix of the second string.

题意:

求两个字符串首尾重合部分的最大长度

预处理字符串前缀子串的哈希值

[l, r]的哈希值为 

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const ll inf = 0x3f3f3f3f3f3f3f3f;
const int N = 85;

char s[N], w[N];
ull a[N], b[N];
ull base = 131;

ull qpow(ull a, ull b)
{
    ull ans = 1;
    while(b)
    {
        if(b & 1)
        {
            ans = ans * a;
        }
        a = a * a;
        b /= 2;
    }
    return ans;
}

void hashs(char s[], ull a[])
{
    int len = strlen(s + 1);
    a[0] = 0;
    for(int i = 1; i <= len; ++i)
    {
        a[i] = a[i - 1] * base + (ull)s[i];
    }
}

int main()
{
    scanf("%s", s + 1);
    scanf("%s", w + 1);
    hashs(s, a);
    hashs(w, b);
    int len1 = strlen(s + 1);
    int len2 = strlen(w + 1);
    int x = 0;
    int y = 0;
    for(int i = min(len1, len2); i > 0; --i)
    {
        ull tmp = b[len2] - b[len2 - i] * qpow(base, i);
        if(a[i] == tmp)
        {
            x = i;
            break;
        }
    }
    for(int i = min(len1, len2); i > 0; --i)
    {
        ull tmp = a[len1] - a[len1 - i] * qpow(base, i);
        if(b[i] == tmp)
        {
            y = i;
            break;
        }
    }
    cout<<max(x, y)<<'\n';
    return 0;
}