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.

每个门上会有大量磁盘且每个磁盘会有一个单词刻于其上。磁盘必须以此为序进行安排:每个单词的首字母必须与上一个单词的尾字母相同。例如“acm”后面可接“motorola”。你的任务就是写个程序来读入这些单词并判断是否有可能把它们安排明白以开门。

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 N that indicates the number of plates (1 ≤ N ≤ 100000). Then exactly N lines 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.

输入:第一行输入T代表会有T组测试数据。接下来每组会以一个整数N开始,暗示了会有N个磁盘(1 ≤ N ≤ 10万)。接下来的N行每行一个单词,单词包含2~1000个小写字母。相同的单词是可以多次出现的。

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.’

输出:对于每组数据,所有的单词必须都要用上,某单词出现了几次就要用几次。如果可以穿成一串,就是存在一种可能的顺序,打印语句“Ordering is possible.”;否则打印“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.

介绍:欧拉回路

如果图G中的一个路径包括每个边恰好一次,则该路径称为欧拉路径(Euler path)。
如果一个回路是欧拉路径,则称为欧拉回路(Euler circuit)。
 
欧拉回路是数学家欧拉在研究著名的德国哥尼斯堡(Koenigsberg)七桥问题时发现的。如图所示,流经哥尼斯堡的普雷格尔河(Pregel)中有两个岛,两个岛与两岸共4处陆地通过7座桥彼此相联。7桥问题就是:是否存在一条路线,可以不重复地走遍7座桥。

欧拉大佬把七桥问题改写成了图。则问题变成了:能否从无向图中的一个结点出发走出一条道路,每条边恰好经过一次。这样的路线就叫欧拉路径,也可以形象地称为“一笔画”。

不难发现,在欧拉道路中,进和出是对应的——除了起点和终点外,其他点的进出次数应该相等。换句话说,其他点的度数(degree)应该是偶数(我们把进入称为入度,出去称为出度)。在七桥问题中,所有4个点的度数均是奇数(这样的点称为奇点),因此不可能存在欧拉道路。

在此不加证明地给出欧拉道路和回路的存在条件,请结合生活实际验证:

那么介绍到这里,应该就可以自己动手编写这道欧拉路径的裸题了,先判断度数,再判断连通性即可。建议自己实现,有问题再参考别人程序。

此处给出两种判断连通性的代码,由于DFS和并查集都是基础算法,暂时不做冗余介绍~

DFS:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. string str;
  5. int test, n;
  6. int ru[], chu[];//入度和出度
  7. bool table[][], vis[];
  8.  
  9. bool dfs(int cur)
  10. {
  11. vis[cur] = true;
  12. for (int i = ; i < ; i++)
  13. if (cur != i && table[cur][i] && !vis[i])
  14. dfs(i);
  15. }
  16.  
  17. bool ok()
  18. {
  19. for (int i = ; i < ; i++)
  20. if (vis[i])
  21. n--;
  22. return n == ;
  23. }
  24.  
  25. int main()
  26. {
  27. cin >> test;
  28. while (test--)
  29. {
  30. //初始化
  31. memset(table, false, sizeof(table));
  32. memset(vis, false, sizeof(vis));
  33. memset(ru, , sizeof(ru));
  34. memset(chu, , sizeof(chu));
  35. //输入
  36. cin >> n;
  37. for (int i = ; i <= n; i++)
  38. {
  39. cin >> str;
  40. int x = str[] - 'a', y = str[str.length()-] - 'a';
  41. table[x][y] = table[y][x] = true;//邻接矩阵制作无向图
  42. chu[x]++;
  43. ru[y]++;
  44. }
  45. //计算度数是否符合条件
  46. int a = , b = , c = -, d = ;
  47. n = ;
  48. for (int i = ; i < ; i++)
  49. {
  50. if (ru[i] == chu[i])
  51. {
  52. a++;
  53. if (!ru[i])//用来判定最后出现了几个字母
  54. n--;
  55. }
  56. else if (ru[i] == chu[i]-) b++, c = i;
  57. else if (ru[i] == chu[i]+) d++;
  58. }
  59.  
  60. if ((b == && d == && a == ) || a == )
  61. {
  62. if (c == -)//即a==26时
  63. for (int i = ; i < ; i++)
  64. if (chu[i])
  65. {
  66. c = i;
  67. break;
  68. }
  69. dfs(c);
  70. if (ok())
  71. {
  72. puts("Ordering is possible.");
  73. continue;
  74. }
  75. }
  76. puts("The door cannot be opened.");
  77. }
  78. return ;
  79. }

并查集:

  1. #include <cstdio>
  2. #include <cstring>
  3. #include <vector>
  4.  
  5. int n;
  6. int f[], degree[];
  7. char str[];
  8. bool vis[];//标记某字母是否出现过
  9. std::vector <int> v;//储存奇点
  10.  
  11. void init()
  12. {
  13. memset(degree, , sizeof(degree));
  14. memset(vis, false, sizeof(vis));
  15. v.clear();
  16. for (int i = ; i < ; i++) f[i] = i;//并查集的预处理
  17. }
  18.  
  19. int getf(int v)
  20. {
  21. return v == f[v] ? v : f[v] = getf(f[v]);
  22. }
  23.  
  24. void input()
  25. {
  26. scanf("%d", &n);
  27. while (n--)
  28. {
  29. scanf("%s", str);
  30. int x = str[] - 'a', y = str[strlen(str)-] - 'a';
  31.  
  32. vis[x] = vis[y] = true;
  33. degree[x]++, degree[y]--;
  34. int t = getf(x), p = getf(y);
  35. if (t != p)
  36. f[p] = t;
  37. }
  38. }
  39.  
  40. bool cal()
  41. {
  42. int cc = ;//有多少个连通块
  43. for (int i = ; i < ; ++i)
  44. {
  45. if (degree[i] != )
  46. v.push_back(degree[i]);
  47. if (vis[i] && f[i] == i)
  48. cc++;
  49. }
  50. return cc == && (v.empty() || (v.size() == && (v[] == || v[] == )));
  51. }
  52.  
  53. int main()
  54. {
  55. int test;
  56. scanf("%d", &test);
  57. while (test--)
  58. {
  59. init();//初始化
  60. input();//输入 + 并查集处理
  61. printf("%s\n", cal() ? "Ordering is possible." : "The door cannot be opened.");
  62. }
  63. }

UVA10129:Play on Words(欧拉回路)的更多相关文章

  1. UVA10129 Play on Words —— 欧拉回路

    题目链接:https://vjudge.net/problem/UVA-10129 代码如下: // UVa10129 Play on Words // Rujia Liu // 题意:输入n个单词, ...

  2. uva10129 PlayOnWords(并查集,欧拉回路)

    判断无向图是否存在欧拉回路,就是看度数为奇数的点有多少个,如果有两个,那么以那分别两个点为起点和终点,可以构造出一条欧拉回路,如果没有,就任意来,否则,欧拉回路不存在. 首先用并查集判断连通,然后统计 ...

  3. 6_16 单词(UVa10129)<欧拉回路>

    考古学家有时候遇到一些神秘的门,这些门需要解开特定的谜题才能打开.因为没有其他方法可以打开门,这谜题对我们来说非常重要.在门上有许多磁盘,每个盘子上有一个英文单字在上面.这些盘子必须被安排,使得盘子上 ...

  4. Play on Words UVA - 10129 (欧拉回路)

    题目链接:https://vjudge.net/problem/UVA-10129 题目大意:输入N  代表有n个字符串  每个字符串最长1000  要求你把所有的字符串连成一个序列  每个字符串的第 ...

  5. ACM/ICPC 之 混合图的欧拉回路判定-网络流(POJ1637)

    //网络流判定混合图欧拉回路 //通过网络流使得各点的出入度相同则possible,否则impossible //残留网络的权值为可改变方向的次数,即n个双向边则有n次 //Time:157Ms Me ...

  6. [poj2337]求字典序最小欧拉回路

    注意:找出一条欧拉回路,与判定这个图能不能一笔联通...是不同的概念 c++奇怪的编译规则...生不如死啊... string怎么用啊...cincout来救? 可以直接.length()我也是长见识 ...

  7. ACM: FZU 2112 Tickets - 欧拉回路 - 并查集

     FZU 2112 Tickets Time Limit:3000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u P ...

  8. UVA 10054 the necklace 欧拉回路

    有n个珠子,每颗珠子有左右两边两种颜色,颜色有1~50种,问你能不能把这些珠子按照相接的地方颜色相同串成一个环. 可以认为有50个点,用n条边它们相连,问你能不能找出包含所有边的欧拉回路 首先判断是否 ...

  9. POJ 1637 混合图的欧拉回路判定

    题意:一张混合图,判断是否存在欧拉回路. 分析参考: 混合图(既有有向边又有无向边的图)中欧拉环.欧拉路径的判定需要借助网络流! (1)欧拉环的判定:一开始当然是判断原图的基图是否连通,若不连通则一定 ...

随机推荐

  1. [noip2014day1-T3]飞扬的小鸟

    Flappy Bird 是一款风靡一时的休闲手机游戏.玩家需要不断控制点击手机屏幕的频率来调节小鸟的飞行高度,让小鸟顺利通过画面右方的管道缝隙.如果小鸟一不小心撞到了水管或者掉在地上的话,便宣告失败. ...

  2. 双端队列篇deque SDUT OJ 双向队列

    双向队列 Time Limit: 1000MS Memory limit: 65536K 题目描述 想想双向链表……双向队列的定义差不多,也就是说一个队列的队尾同时也是队首:两头都可以做出队,入队的操 ...

  3. 最优配对问题(集合上的动态规划) —— 状压DP

    题目来源:紫书P284 题意: 给出n个点的空间坐标(n为偶数, n<=20), 把他们配成n/2对, 问:怎样配对才能使点对的距离和最小? 题解: 设dp[s]为:状态为s(s代表着某个子集) ...

  4. 如何刷新本地的DNS缓存?

    为了提高网站的访问速度,系统会在成功访问某网站后将该网站的域名.IP地址信息缓存到本地.下次访问该域名时直接通过IP进行访问.一些网站的域名没有变化,但IP地址发生变化,有可能因本地的DNS缓存没有刷 ...

  5. UVA-10534 (LIS)

    题意: 给定一个长为n的序列,求一个最长子序列,使得该序列的长度为2*k+1,前k+1个数严格递增,后k+1个数严格单调递减; 思路: 可以先求该序列最长单调递增和方向单调递增的最长序列,然后枚举那第 ...

  6. LA-3942(trie树+dp)

    题意: 给出一个由多个不同单词组成的字典,和一个长字符串,把这个字符串分解成若干个单词的连接,问有多少种方法; 思路: dp[i]表示s[i,L]的方案数,d[i]=∑d[j];s[i,j-1]是一个 ...

  7. C++之const类成员变量,const成员函数

    const修饰类的成员函数 const修饰变量一般有两种方式:const T *a,或者 T const *a,这两者都是一样的,主要看const位于*的左边还是右边,这里不再赘述,主要来看一下当co ...

  8. Python 之Event

    线程间互相等状态. import threading import time import logging logging.basicConfig(level=logging.DEBUG, forma ...

  9. Flutter实战视频-移动电商-27.列表页_现有Bug修复和完善

    27.列表页_现有Bug修复和完善 小解决小bug 默认右侧的小类没有被加载 数据加载完成后,就list的第一个子对象传递给provide进行赋值,这样右侧的小类就刷新了数据 默认加载了第一个类别 调 ...

  10. window.location js截取url地址

    window.location方法的说明 原文链接: http://jiantian.org/index.php?page_id=2 window.location.href 整个URl字符串(在浏览 ...