题目描述

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 word ``motorola''. 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.

输入描述:

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. 

输出描述:

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.". 
示例1

输入

3
2
acm
ibm
3
acm
malform
mouse
2
ok
ok

输出

The door cannot be opened.
Ordering is possible.
The door cannot be opened.
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<cmath>
#include<queue>
#include<stack>
#include<set>
#include<time.h>
#include<map>
#include<algorithm>
#define ll long long
#define eps 1e-5
#define oo 1000000007
#define pi acos(-1.0)
#define MAXN 100005
#define MAXM 500005
using namespace std;
int P[2][26],father[26];
bool used[26];
char s[1005];
int getfather(int x)
{if (father[x]==x) return x;return father[x]=getfather(father[x]);
}
int main()
{       int i,cases,n,m,x,y,t1,t2;scanf("%d",&cases);while (cases--){scanf("%d",&n);memset(used,false,sizeof(used));memset(P,0,sizeof(P));for (i=0;i<26;i++) father[i]=i;for (i=1;i<=n;i++){scanf("%s",s+1);x=s[1]-'a',y=s[strlen(s+1)]-'a';P[0][x]++,P[1][y]++;father[getfather(x)]=getfather(y);used[x]=used[y]=true;m=getfather(x);}if (n==1){printf("Ordering is possible.\n");continue;}for (i=0;i<26;i++)if (used[i] && getfather(i)!=m) break;if (i<26){printf("The door cannot be opened.\n");continue;}t1=t2=0;for (i=0;i<26;i++){if (P[0][i]==P[1][i]) continue;if (P[0][i]+1==P[1][i]) t1++;elseif (P[1][i]+1==P[0][i]) t2++;else break;}if (i<26 || !(t1==1 && t2==1 || !t1 && !t2))printf("The door cannot be opened.\n");elseprintf("Ordering is possible.\n");}return 0;
}

最新文章

  1. 读硕期间给你最大帮助的不是你的导师,而是他们
  2. 共读计划 | 你有多久没读完一本书了?
  3. json web token 实践登录以及校验码验证
  4. 120所国家重点建设大学(211工程和教育部直属)[国家一类本科大学]详细情况一览表...
  5. js生成的cookie在yii2中获取不到的解决办法
  6. 容器技术第一讲:容器入门篇
  7. 终端用sublime打开文件的方法
  8. html中多个div分开排列,CSS+DIV设计实例:多个DIV排列时居中
  9. EDFbrowser查看edf文件及睡眠分期认识
  10. 百度云盘不限速 又一款百度网盘满速下载工具利器
  11. 各种类型的电影排行榜-movie路线
  12. 笔记-51,k60,stm32
  13. steam怎么设置邮箱令牌_【教程】电脑端steam动态令牌设置教程
  14. NoSQLBooster for MongoDB 7.0.5
  15. springboot项目打包报错
  16. JAVA计算机毕业设计租房管理系统Mybatis+系统+数据库+调试部署
  17. 应用统计432考研复试复试提问总结精简版【一】
  18. LTE网络中SIB2(系统消息2)信息详解
  19. 老男孩python培训班
  20. ASP.NET 多媒体电子报刊设计思路

热门文章

  1. 高德地图 Web JS API示例学习笔记(12)——Object3D 图形(通用接口、立体Mesh、线Line)
  2. 钉钉和mis系统对接调研
  3. 阿里云体验有礼:使用RDS和ECS搭建个人博客
  4. Kaldi 实践与探索 语音识别基本法 pdf
  5. 介绍兴趣爱好的网页html,介绍兴趣爱好的作文5篇
  6. JAVA集合,TreeMap排序
  7. [IDEA]JavaWeb项目切换时Tomcat配置更换问题
  8. 三星 galaxy s7 启用开发者模式
  9. 最小生成树-Prim + Kruskal算法
  10. 过滤掉Abp框架不需要记录的日志