如果这个图是欧拉路,则每个顶点的出度等于入度。
即out[i] = in[i]
如果这个图是半欧拉图,
则起点的出度比入度大1,终点的入度比出度大1.
其余顶点的出度等于入度。
如果满足上述条件,就可以将所有单词链接起来,
否则不能。
当然,在判断出度入度的时候还有一点需要注意,
那就是除了起点终点以外的顶点,
出度必须等于入度(出度入度可以同时为2,即环),
但是起点和终点必须保证出度和入度之差为1。

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.

InputThe 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.
OutputYour 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 #include<cstdio>
2 #include<iostream>
3 #include<map>
4 #include<vector>
5 #include<cstring>
6 using namespace std;
7 int ind[30];
8 int outd[30];
9 int pre[30];
10 void init()
11 {
12 for(int i=0;i<26;i++)
13 pre[i]=i;
14 }
15 int find(int x)
16 {
17 return x==pre[x]?x:find(pre[x]);
18 }
19 void merge(int x,int y)
20 {
21 int fx=find(x);
22 int fy=find(y);
23 pre[fy]=fx;
24 }
25 int main()
26 {
27 int t;
28 scanf("%d",&t);
29 while(t--)
30 {
31 memset(ind,0,sizeof(ind));
32 memset(outd,0,sizeof(outd));
33 int n;
34 scanf("%d",&n);
35 init();
36 for(int i=0;i<n;i++)
37 {
38 char s[1005];
39 scanf("%s",s);
40 int u=s[0]-'a';
41 int v=s[strlen(s)-1]-'a';
42 ind[u]++; //入度和出度分别加1
43 outd[v]++;
44 merge(u,v);
45 }
46 vector<int> ans;
47 int cnt=0;
48 int flag=1;
49 for(int i=0;i<26;i++)
50 {
51 if(ind[i]!=outd[i])//如果这个图是欧拉路,则每个顶点的出度等于入度。即outd[i] = ind[i]
52 {
53 ans.push_back(i);
54 }
55 if(ans.size()>2)/*如果这个图是半欧拉图,
56 则起点的出度比入度大1,终点的入度比出度大1.
57 其余顶点的出度等于入度。*/
58 {
59 flag=0;
60 break;
61 }
62 if((ind[i]||outd[i])&&pre[i]==i) //如果不同源,则非同根
63 cnt++; //计算连通分支个数
64 if(cnt>1) //是否构成欧拉图
65 {
66 flag=0;
67 break;
68 }
69 }
70 if(ans.size()==2)
71 {
72 /*
73 那就是除了起点终点以外的顶点,
74 出度必须等于入度(出度入度可以同时为2,即环),
75 但是起点和终点必须保证出度和入度之差为1。
76 */
77 int a=ans[0],b=ans[1];
78 if((ind[a]+ind[b]==outd[a]+outd[b])&&(outd[a]-ind[a]==1||outd[a]-ind[a]==-1))
79 flag=1;
80 else flag=0;
81 }
82 if(!flag)
83 cout<<"The door cannot be opened."<<endl;
84 else cout<<"Ordering is possible."<<endl;
85 }
86 }

随机推荐

  1. HSRP技术(热备份)学习总结

    热备份学习视频https://www.bilibili.com/video/BV1i7411G7vm?p=78 • 命令:        ○ int fa0/x        ○ standby 1 ...

  2. 紧急预警】关于爆发的 incaseformat 病毒事件亲身体验

    相关报道 incaseformat病毒 360安全卫士服务号 https://mp.weixin.qq.com/s/KM6esd1eUlBt-YHtEwnfuw 广东省网络安全应急响应平台 https ...

  3. mysql的导入

    方法1 load data [local] infile 'filename' into table tablename[option] ields terminated by 'string'(字段 ...

  4. kubernets之DaemonSet

    一  k8s资源之DaemonSet 1.1 介绍认识DaemonSet DaemonSet可以理解为一种比较特殊的RS,DaemonSet的作用是永远保持被指定的节点只运行一个pod的副本,可用作集 ...

  5. Loadrunner参数化数据配置与更新方式

    之前遇到过一种情况,对脚本进行并发测试时,脚本没有报错,但是有丢失的事物,与开发配合检查确定不是代码的问题,然后检查脚本,更换参数化数据配置与更新方式,问题解决.现在对参数化数据配置和更新方式进行总结 ...

  6. Loadrunner录制脚本与编写脚本的区别

    异同点: 1.录制的和编写的脚本质量上没有区别 2.性能脚本关心的是用户和服务器的数据交互,从这点上来看,录制和编写也没有区别,手动编写脚本也可以写出很真实的脚本 3.能录制的情况下,就录制吧,谁每天 ...

  7. vagrant up报错【io.rb:32:in `encode': "\x95" followed by "\"" on GBK (Encoding::InvalidByteSequenceError)】

    vagrant up报错[io.rb:32:in `encode': "\x95" followed by """ on GBK (Encoding: ...

  8. MongoDB查询优化--explain,慢日志

    引入 与Mysql数据库一样,MongoDB也有自己的查询优化工具,explain和慢日志 explain shell命令格式 db.collection.explain().<method(. ...

  9. 入门OJ:简单的网络游戏

    题目描述 在某款极具技术含量的网络游戏中,佳佳靠着他的聪明智慧垄断了游戏中的油田系统.油田里有许多油井,这些油井排成一个M*N的矩形.每个油井都有一个固定的采油量.每两个相邻的油井之间有一条公路,这些 ...

  10. Java 栈的使用

    讲栈之前,要先讲一下Deque双端队列 既可以添加到队尾,也可以添加到队首 既可以从队首获取又可以从队尾获取 public interface Deque<E> extends Queue ...