亲测回溯要用矩阵可以省很多时间;
#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
int n;
char dir[4]={'A','G','C','T'};
struct str{
char s[20];
int pos;
bool friend operator<(const str &a,const str &b){
int len1=strlen(a.s),len2=strlen(b.s);
if(len1!=len2)
return len1>len2;
return strcmp(a.s,b.s)<0;
}
}a[20];
bool ida(int x,int depth){
int tot=0,t=depth-x+1;;
for(int i=1;i<=n;++i){
if(a[i].pos==strlen(a[i].s))
++tot;
else if(a[i].pos+t<strlen(a[i].s))
return false;
}
if(tot==n){
printf("%d\n",depth);
return true;
}
if(x>depth)
return false;
int tmp[10];
for(int i=1;i<=n;++i){
tmp[i]=a[i].pos;
}
for(int i=0;i<4;++i){
bool ok=false;
for(int j=1;j<=n;++j){
if(a[j].s[a[j].pos]==dir[i]){
++a[j].pos;
ok=true;
}
}
if(!ok)
continue;
if(ida(x+1,depth))
return true;
for(int j=1;j<=n;++j){
a[j].pos=tmp[j];
}
}
return false;
}
int main(){
int T;scanf("%d",&T);
while(T--){
scanf("%d",&n);
for(int i=1;i<=n;++i){
scanf("%s",a[i].s);
a[i].pos=0;
}
sort(a+1,a+1+n);
for(int i=strlen(a[1].s);1;++i){
if(ida(1,i))
break;
}
}
return 0;
}