POJ 1386 Play on Words
发布日期:2021-07-27 13:45:10 浏览次数:1 分类:技术文章

本文共 2419 字,大约阅读时间需要 8 分钟。

Description

Some of the secret doors contain a very interesting word puzzle. The team of archaeologists has to solve it to open that doors. Because there is no other way to open the doors, the puzzle is very important for us.

There is a large number of magnetic plates on every door. Every plate has one word written on it. The plates must be arranged into a sequence in such a way that every word begins with the same letter as the previous word ends. For example, the word acm'' can be followed by the wordmotorola”. Your task is to write a computer program that will read the list of words and determine whether it is possible to arrange all of the plates in a sequence (according to the given rule) and consequently to open the door.

Input

The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing a single integer number Nthat indicates the number of plates (1 <= N <= 100000). Then exactly Nlines follow, each containing a single word. Each word contains at least two and at most 1000 lowercase characters, that means only letters ‘a’ through ‘z’ will appear in the word. The same word may appear several times in the list.

Output

Your program has to determine whether it is possible to arrange all the plates in a sequence such that the first letter of each word is equal to the last letter of the previous word. All the plates from the list must be used, each exactly once. The words mentioned several times must be used that number of times.
If there exists such an ordering of plates, your program should print the sentence “Ordering is possible.”. Otherwise, output the sentence “The door cannot be opened.”.

Sample Input

3

2
acm
ibm
3
acm
malform
mouse
2
ok
ok

Sample Output

The door cannot be opened.

Ordering is possible.
The door cannot be opened.

1 将有向图转换为无向图

2 dfs判断是否连通
3 依据欧拉路,欧拉回路的定义判断
注意
vector中每条相同的边只存一次,不然会超时。

#include
#include
#include
#include
using namespace std;vector
v[101];int n,s,flg1,flg2,du[101];//du出度-入度 char c[1001];bool b[101],bb[101],bbb[101][101],flg;inline void dfs(int u){ bb[u]=1; for(int i=0;i
1||du[i]<-1) flg=1; if(du[i]==1) flg1++; if(du[i]==-1) flg2++; } if((!flg)&&((flg1==0&&flg2==0)||(flg1==1&&flg2==1))) printf("Ordering is possible.\n"); else printf("The door cannot be opened.\n"); } return 0;}

转载地址:https://blog.csdn.net/Rlt1296/article/details/51890966 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:洛谷 P1341 无序字母对
下一篇:BZOJ 2705 [SDOI2012]Longge的问题

发表评论

最新留言

留言是一种美德,欢迎回访!
[***.207.175.100]2024年04月21日 13时38分07秒