codeforces 126 B. Password(对next的理解)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_42391248/article/details/81877072

(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.

扫描二维码关注公众号,回复: 2964158 查看本文章

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]记录的是最长前缀。

#include<iostream>
#include<string>
using namespace std;
int next[1000000],vis[1000000]={0};
int kmp(string b)
{
	next[0]=-1;
	int k=-1,j=0;
	int lenb=b.size();
	while(j<lenb)
		if(k==-1||b[j]==b[k])
			next[++j]=++k;
		else
			k=next[k];
	next[0]=0;
	for(int i=0;i<lenb;i++) 
		vis[next[i]]=1;//将最长前缀最后一位的下标用vis标记为1 
    int flag=0;
    int i=lenb;
    while(next[i])
    {
        if(vis[next[i]])
        {
            for(j=0;j<next[i];j++) 
				cout<<b[j];
            flag=1;
            break;
        }
        i=next[i];//i=Next[i]的位置,因为next[i],记录的是最大  
		//前缀,当这个前缀没有在中间出现过而你只能在当前最大前 
		//缀中找次最长前缀等于后缀所以长度就是缩短为next[i]了。 
    }
    if(flag) 
		cout<<endl;
    else 
		cout<<"Just a legend"<<endl; 
}
int main()
{
	string s;
	cin>>s;
	int n=s.size();	
	kmp(s);
	return 0;
}	
	

猜你喜欢

转载自blog.csdn.net/qq_42391248/article/details/81877072