NYOJ 99单词拼接(有向图的欧拉(回)路)

时间:2022-05-27 09:43:55
 /*
NYOJ 99单词拼接:
思路:欧拉回路或者欧拉路的搜索!
注意:是有向图的!不要当成无向图,否则在在搜索之前的判断中因为判断有无导致不必要的搜索,以致TLE!
有向图的欧拉路:abs(In[i] - Out[i])==1(入度[i] - 出度[i])的节点个数为两个
有向图的欧拉回路:所有的节点都有In[i]==Out[i]
*/
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std; struct node{
char s[];
int first, end;
}; bool cmp(node a, node b){
return strcmp(a.s, b.s) <;
} node nd[];
int In[], Out[];
int order[], vis[];
int n; int fun(){
memset(vis, , sizeof(vis));
int i;
int last=-;
int first=-;
//有向图欧拉路的判断
for(i=; i<; ++i)
{
if(In[i]!=Out[i])
{ //首先入度和出度之差的绝对值为 1的节点的要么没有,要么只有两个(没有欧拉回路,只有欧拉路)!
if(Out[i]-In[i]== && first==-)
first=i;
else if(Out[i]-In[i]==- && last==-)
last=i;
else
return -;
}
}
if(first>- && last>-) //这种情况是 欧拉路的搜索 !
return first;
else if(first==- && last==-) //这种是欧拉回路的搜索!
{
for(i=; i<; ++i)
if(In[i]!=)
return i;
}
else
return -;
} bool dfs(int st, int cnt){
if(cnt == n)
return true;
int ld=, rd=n-;
while(ld<=rd){
int mid=(ld+rd)/;
if(nd[mid].first<st)
ld=mid+;
else rd=mid-;
}
int m=rd+;
if(nd[m].first > st) return false;
for(int i=m; i<n; ++i)
if(!vis[i]){
if(nd[i].first > st)
return false;
if(nd[i].first == st){
vis[i]=;
order[cnt]=i;
if(dfs(nd[i].end, cnt+)) return true;
vis[i]=;
}
}
return false;
} int main(){
int t;
scanf("%d", &t);
while(t--){
scanf("%d", &n);
memset(In, , sizeof(In));
memset(Out, , sizeof(Out));
for(int i=; i<n; ++i){
scanf("%s", nd[i].s);
nd[i].first=nd[i].s[]-'a';
nd[i].end=nd[i].s[strlen(nd[i].s)-]-'a';
++Out[nd[i].first];
++In[nd[i].end];
} int st = fun();
//因为搜索的是字典序的第一个,所以将字符串从小到大排一下序!在搜索的时候按照升序搜索组合!
sort(nd, nd+n, cmp);
if(st==- || !dfs(st, ))
printf("***\n");
else{
printf("%s", nd[order[]].s);
for(int i=; i<n; ++i)
printf(".%s", nd[order[i]].s);
printf("\n");
}
}
return ;
}