题目链接:https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=65
思路比较简单,但是在判断有没有相邻的子串这里的思路值的我们借鉴。
我们只考虑增加当前字符,对整个字符串的影响。枚举可能发生相同子串的长度,再判断就可以了。
#include <bits/stdc++.h>
#define LL long long
using namespace std;
int cut=0;
int s[205];
int dfs(int tot, int n, int L){
if(cut++==n){
for(int i=1; i<=tot; i++){
printf("%c", s[i]+'A');
if(i%64==0&&i!=tot){
printf("\n");
}
else if(i%4==0&&i!=tot){
printf(" ");
}
}
printf("\n%d\n", tot);
return 0;
}
for(int i=0; i<L; i++){
s[++tot]=i;
int ok=1;
for(int Len=1; Len<=tot/2; Len++){//可能发生相同子串的长度
int ky=1;
for(int k=1; k<=Len; k++){
if(s[tot-Len+k]!=s[tot-2*Len+k]){
ky=0;
break;
}
}
if(ky){
ok=0;
}
}
if(ok!=0){
if(!dfs(tot, n, L)){
return 0;
}
}
tot--;
}
return 1;
}
int main()
{
int n, L;
while(scanf("%d%d", &n, &L), n*L){
cut=0;
dfs(0, n, L);
}
return 0;
}