洛谷 P1019 单词接龙

时间:2023-01-01 18:03:45

题目描述

单词接龙是一个与我们经常玩的成语接龙相类似的游戏,现在我们已知一组单词,且给定一个开头的字母,要求出以这个字母开头的最长的“龙”(每个单词都最多在“龙”中出现两次),在两个单词相连时,其重合部分合为一部分,例如 beast和astonish,如果接成一条龙则变为beastonish,另外相邻的两部分不能存在包含关系,例如at 和 atide 间不能相连。

输入输出格式

输入格式:

 

输入的第一行为一个单独的整数n (n<=20)表示单词数,以下n 行每行有一个单词,输入的最后一行为一个单个字符,表示“龙”开头的字母。你可以假定以此字母开头的“龙”一定存在.

 

输出格式:

 

只需输出以此字母开头的最长的“龙”的长度

 

输入输出样例

输入样例#1:
5
at
touch
cheat
choose
tact
a
输出样例#1:
23           (连成的“龙”为atoucheatactactouchoose)   
#include<iostream>
#include
<cstdio>
#include
<stdio.h>
#include
<cmath>
#include
<string>
#include
<iomanip>
using namespace std;
string a[21];
int use[21];
int n,shou,ans=1,the;
void dfs(int s)
{
the
=max(the,ans);
for(int i=1;i<=n;i++)
{
if(use[i]<2)
{
for(int j=0;j<a[s].length();j++)
{
if(a[i][0]==a[s][j])
{
int x,y;
x
=j;y=0;
while(a[i][y]==a[s][x]&&x<a[s].length())
{
x
++;
y
++;
}
if(x>=a[s].length())
{
ans
=ans+a[i].length()-y;
use[i]
++;
dfs(i);
use[i]
--;
ans
=ans-a[i].length()+y;
}
}
}
}
}
}
int main()
{
cin
>>n;
for(int i=1;i<=n;i++)
{
cin
>>a[i];
}
cin
>>a[0];
dfs(
0);
cout
<<the;
return 0;
}