KMP:最長連續公共子序列
阿新 • • 發佈:2018-11-22
大佬部落格:
題意:
給你n個字串,要你求出這n個字串的最長公共連續子序列是哪個,如果存在多個最長的,就輸出字典序最小的那個。
<span style="font-size:18px;">#include <iostream> #include<cstdio> #include<algorithm> #include<cstring> #include<cmath> using namespace std; char s[15][100]; char P[100]; char ans[100];//最終的結果字串 int m,next[100]; int n;//表示有多少個主串 void getFail() { m=strlen(P); next[0]=next[1]=0; for(int i=1;i<m;i++) { int j =next[i]; while(j && P[i]!=P[j]) j=next[j]; next[i+1] = (P[i]==P[j])?j+1:0; } } bool find(char *T) { int j=0; getFail(); for(int i=0;i<60;i++) { while(j && T[i]!=P[j]) j=next[j]; if(T[i]==P[j]) j++; if(j==m) return true; } return false; } bool solve_1(int len)//判斷第0個base串的長為len的字串中是否有可行串 { for(int i=0;i+len-1<60;i++) { strncpy(P,s[0]+i,len); P[len]=0;//P串末尾加'\0' bool ok=true; for(int j=1;j<n;j++) if(!find(s[j])) { ok=false; break; } if(ok) return true; } return false; } void solve_3(int len)//找出長度為len的可行字串中字典序最小的,放在ans中 { bool first=true; for(int i=0;i+len-1<60;i++) { strncpy(P,s[0]+i,len); P[len]=0;//P串末尾加'\0' bool ok=true; for(int j=1;j<n;j++)if(!find(s[j])) { ok=false; break; } if(ok) { if(first) { strncpy(ans,P,len+1); first=false; } else if(strcmp(ans,P)>0)//字典序小才更新 strncpy(ans,P,len+1); } } } bool solve() { int L=3,R=60; if(!solve_1(3)) return false; while(R>L) { int m=L+(R-L+1)/2; if(solve_1(m)) L=m; else R=m-1; } //找到了可行字串的最長長度為L,然後需要找出字典序最小的 solve_3(L);//找到長L的字典序最小的字串存在ans中 return true; } int main() { int kase; scanf("%d",&kase); while(kase--) { scanf("%d",&n); for(int i=0;i<n;i++) scanf("%s",s[i]); if(!solve())//最終結果存在ans中 printf("no significant commonalities\n"); else printf("%s\n",ans); } return 0; } </span>