nowcoder 五 C

ACM_e發表於2018-02-25

連結:https://www.nowcoder.com/acm/contest/77/C
來源:牛客網

題目描述

有一個字串 讓你找到這個字串 S 裡面的子串T 這個子串 T 必須滿足即使這個串的字首 也是這個
串的字尾 並且 在字串中也出現過一次的(提示 要求滿足前字尾的同時也要在字串中出現一次 只是前字尾可不行 輸出最長滿足要求字串)

輸入描述:

給出一個字串 長度 1 到 1e6  全部是小寫字母

輸出描述:

如果找的到就輸出這個子串T 如果不行就輸出 Just a legend

#include<bits/stdc++.h>
using namespace std;
#define maxn 1000000
string str;
int nex[maxn];
int s=0;
void get_nex(){              //獲得next 陣列
   nex[0]=-1;
   int k=-1,j=0;
   while(j<s){
      if(k==-1||str[j]==str[k]){
          j++;
          k++;
          nex[j]=k;
      }
      else k=nex[k];
   }
}
bool kmp(int len){                                  //kmp字串匹配
    for(int i = 1, j = 0; i < s-1; i++){
        while(j > 0 && str[i] != str[j]) j = nex[j];
        if(str[i] == str[j]) j++;
        if(j == len) return true;
    }
    return false;
}
bool xxx(int len){                        //獲取長度
    for(int j=0;j<len;j++){
       if(str[j]!=str[s-len+j]) return false;
    }
    return true;
}
bool work(){
   for(int j=s-2;j>=1;j--){
      //if(j==3) cout<<xxx(j)<<endl;
      if(xxx(j)){
         if(kmp(j)){
            for(int k=0;k<j;k++){
               cout<<str[k];
            }
            return true;
         }
      }
   }
   return false;
}
int main(){
   cin>>str;
   s=str.size();
   get_nex();
   if(!work()){
      cout<<"Just a legend"<<endl;
   }
   return 0;
}






相關文章