(CodeForces

来源:互联网 发布:eclipse写java程序 编辑:程序博客网 时间:2024/06/08 14:59

(CodeForces - 126B)Password

time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output

Asterix, Obelix and their temporary buddies Suffix and Prefix has finally found the Harmony temple. However, its doors were firmly locked and even Obelix had no luck opening them.

A little later they found a string s, carved on a rock below the temple’s gates. Asterix supposed that that’s the password that opens the temple and read the string aloud. However, nothing happened. Then Asterix supposed that a password is some substring t of the string s.

Prefix supposed that the substring t is the beginning of the string s; Suffix supposed that the substring t should be the end of the string s; and Obelix supposed that t should be located somewhere inside the string s, that is, t is neither its beginning, nor its end.

Asterix chose the substring t so as to please all his companions. Besides, from all acceptable variants Asterix chose the longest one (as Asterix loves long strings). When Asterix read the substring t aloud, the temple doors opened.

You know the string s. Find the substring t or determine that such substring does not exist and all that’s been written above is just a nice legend.

Input

You are given the string s whose length can vary from 1 to 106 (inclusive), consisting of small Latin letters.

Output

Print the string t. If a suitable t string does not exist, then print “Just a legend” without the quotes.

Examples

Input

fixprefixsuffix

Output

fix

Input

abcdabc

Output

Just a legend

题目大意:给出一个字符串,求这个字符串最长子串既是前缀也是后缀同时要在串的中间出现过。

思路:Next[i]记录的是最长前缀,那么我们从后往前扫,如果Next[i]出现过直接输出就好。如果当前的Next[i]不满足要求,那么我们跳到i=Next[i]的位置,因为因为next[i],记录的是最大前缀,当这个前缀没有在中间出现过而你只能在当前最大前缀中找次最长前缀等于后缀所以长度就是缩短为next[i]了。

#include<cstdio>#include<cstring>using namespace std;const int maxn=1000005;char s[maxn];int Next[maxn],vis[maxn];void getNext(int n){    Next[0]=Next[1]=0;    for(int i=1;i<n;i++)    {        int j=Next[i];        while(j&&s[i]!=s[j]) j=Next[j];        if(s[i]==s[j]) Next[i+1]=j+1;        else Next[i+1]=0;    }}int main(){    while(~scanf("%s",s))    {        int n=strlen(s);        memset(vis,0,sizeof(vis));        getNext(n);        for(int i=0;i<n;i++) vis[Next[i]]=1;        bool flag=false;        int i=n;        while(Next[i])        {            if(vis[Next[i]])            {                for(int j=0;j<Next[i];j++) printf("%c",s[j]);                flag=true;                break;            }            i=Next[i];        }        if(flag) printf("\n");        else printf("Just a legend\n");     }    return 0;}
原创粉丝点击