UVA10129:Play on Words(欧拉回路)
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.
介绍:欧拉回路
欧拉大佬把七桥问题改写成了图。则问题变成了:能否从无向图中的一个结点出发走出一条道路,每条边恰好经过一次。这样的路线就叫欧拉路径,也可以形象地称为“一笔画”。

不难发现,在欧拉道路中,进和出是对应的——除了起点和终点外,其他点的进出次数应该相等。换句话说,其他点的度数(degree)应该是偶数(我们把进入称为入度,出去称为出度)。在七桥问题中,所有4个点的度数均是奇数(这样的点称为奇点),因此不可能存在欧拉道路。
在此不加证明地给出欧拉道路和回路的存在条件,请结合生活实际验证:

那么介绍到这里,应该就可以自己动手编写这道欧拉路径的裸题了,先判断度数,再判断连通性即可。建议自己实现,有问题再参考别人程序。
此处给出两种判断连通性的代码,由于DFS和并查集都是基础算法,暂时不做冗余介绍~
DFS:
#include <bits/stdc++.h>
using namespace std; string str;
int test, n;
int ru[], chu[];//入度和出度
bool table[][], vis[]; bool dfs(int cur)
{
vis[cur] = true;
for (int i = ; i < ; i++)
if (cur != i && table[cur][i] && !vis[i])
dfs(i);
} bool ok()
{
for (int i = ; i < ; i++)
if (vis[i])
n--;
return n == ;
} int main()
{
cin >> test;
while (test--)
{
//初始化
memset(table, false, sizeof(table));
memset(vis, false, sizeof(vis));
memset(ru, , sizeof(ru));
memset(chu, , sizeof(chu));
//输入
cin >> n;
for (int i = ; i <= n; i++)
{
cin >> str;
int x = str[] - 'a', y = str[str.length()-] - 'a';
table[x][y] = table[y][x] = true;//邻接矩阵制作无向图
chu[x]++;
ru[y]++;
}
//计算度数是否符合条件
int a = , b = , c = -, d = ;
n = ;
for (int i = ; i < ; i++)
{
if (ru[i] == chu[i])
{
a++;
if (!ru[i])//用来判定最后出现了几个字母
n--;
}
else if (ru[i] == chu[i]-) b++, c = i;
else if (ru[i] == chu[i]+) d++;
} if ((b == && d == && a == ) || a == )
{
if (c == -)//即a==26时
for (int i = ; i < ; i++)
if (chu[i])
{
c = i;
break;
}
dfs(c);
if (ok())
{
puts("Ordering is possible.");
continue;
}
}
puts("The door cannot be opened.");
}
return ;
}
并查集:
#include <cstdio>
#include <cstring>
#include <vector> int n;
int f[], degree[];
char str[];
bool vis[];//标记某字母是否出现过
std::vector <int> v;//储存奇点 void init()
{
memset(degree, , sizeof(degree));
memset(vis, false, sizeof(vis));
v.clear();
for (int i = ; i < ; i++) f[i] = i;//并查集的预处理
} int getf(int v)
{
return v == f[v] ? v : f[v] = getf(f[v]);
} void input()
{
scanf("%d", &n);
while (n--)
{
scanf("%s", str);
int x = str[] - 'a', y = str[strlen(str)-] - 'a'; vis[x] = vis[y] = true;
degree[x]++, degree[y]--;
int t = getf(x), p = getf(y);
if (t != p)
f[p] = t;
}
} bool cal()
{
int cc = ;//有多少个连通块
for (int i = ; i < ; ++i)
{
if (degree[i] != )
v.push_back(degree[i]);
if (vis[i] && f[i] == i)
cc++;
}
return cc == && (v.empty() || (v.size() == && (v[] == || v[] == )));
} int main()
{
int test;
scanf("%d", &test);
while (test--)
{
init();//初始化
input();//输入 + 并查集处理
printf("%s\n", cal() ? "Ordering is possible." : "The door cannot be opened.");
}
}
UVA10129:Play on Words(欧拉回路)的更多相关文章
- UVA10129 Play on Words —— 欧拉回路
题目链接:https://vjudge.net/problem/UVA-10129 代码如下: // UVa10129 Play on Words // Rujia Liu // 题意:输入n个单词, ...
- uva10129 PlayOnWords(并查集,欧拉回路)
判断无向图是否存在欧拉回路,就是看度数为奇数的点有多少个,如果有两个,那么以那分别两个点为起点和终点,可以构造出一条欧拉回路,如果没有,就任意来,否则,欧拉回路不存在. 首先用并查集判断连通,然后统计 ...
- 6_16 单词(UVa10129)<欧拉回路>
考古学家有时候遇到一些神秘的门,这些门需要解开特定的谜题才能打开.因为没有其他方法可以打开门,这谜题对我们来说非常重要.在门上有许多磁盘,每个盘子上有一个英文单字在上面.这些盘子必须被安排,使得盘子上 ...
- Play on Words UVA - 10129 (欧拉回路)
题目链接:https://vjudge.net/problem/UVA-10129 题目大意:输入N 代表有n个字符串 每个字符串最长1000 要求你把所有的字符串连成一个序列 每个字符串的第 ...
- ACM/ICPC 之 混合图的欧拉回路判定-网络流(POJ1637)
//网络流判定混合图欧拉回路 //通过网络流使得各点的出入度相同则possible,否则impossible //残留网络的权值为可改变方向的次数,即n个双向边则有n次 //Time:157Ms Me ...
- [poj2337]求字典序最小欧拉回路
注意:找出一条欧拉回路,与判定这个图能不能一笔联通...是不同的概念 c++奇怪的编译规则...生不如死啊... string怎么用啊...cincout来救? 可以直接.length()我也是长见识 ...
- ACM: FZU 2112 Tickets - 欧拉回路 - 并查集
FZU 2112 Tickets Time Limit:3000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u P ...
- UVA 10054 the necklace 欧拉回路
有n个珠子,每颗珠子有左右两边两种颜色,颜色有1~50种,问你能不能把这些珠子按照相接的地方颜色相同串成一个环. 可以认为有50个点,用n条边它们相连,问你能不能找出包含所有边的欧拉回路 首先判断是否 ...
- POJ 1637 混合图的欧拉回路判定
题意:一张混合图,判断是否存在欧拉回路. 分析参考: 混合图(既有有向边又有无向边的图)中欧拉环.欧拉路径的判定需要借助网络流! (1)欧拉环的判定:一开始当然是判断原图的基图是否连通,若不连通则一定 ...
随机推荐
- CodeForces - 385E Bear in the Field —— 矩阵快速幂
题目链接:https://vjudge.net/problem/CodeForces-385E E. Bear in the Field time limit per test 1 second me ...
- 发布镶嵌数据集,服务端Raster Function制作
1.新建GDB 2.GDB里右键,New 镶嵌数据集. 3.向镶嵌数据集中添加风速TIF. 4.利用原样式,导出一个函数模板. 导出是XML. 5.发布ImageService服务时,在Functio ...
- android vector pathData探究,几分钟绘制自己的vectordrawable
之前经常看到一些酷酷的图标效果, 深入进去发现不是直接用的图片, 而是一些以Vector标签开头的xml文件, 于是就看到了如下代码: <vector xmlns:android="h ...
- BZOJ 1628 [Usaco2007 Demo]City skyline:单调栈
题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1628 题意: 题解: 单调栈. 单调性: 栈内元素高度递增. 一旦出现比栈顶小的元素,则表 ...
- codeforces B. Ilya and Queries 解题报告
题目链接:http://codeforces.com/problemset/problem/313/B 题目意思:给出一个只有 "." 和 "#" 组成的序 ...
- idea提交新项目到远程git创库
1.创建远程版本库 http://192.168.28.130:81 登陆用户:maohx/123456 版本库名称最后与本地项目名称一致 如:spring-cloud-demo 2.创建本地版本库 ...
- Qt工程pro文件的简单配置(尤其是第三方头文件和库)
Qt开发中,pro文件是对正工程所有源码.编译.资源.目录等的全方位配置的唯一方式,pro文件的编写非常重要,以下对几个重要项进行说明(win和linux,mac平台通用配置) 注释 以”#”开始的行 ...
- JS-React:目录
ylbtech-JS-React:目录 1.返回顶部 2.返回顶部 3.返回顶部 4.返回顶部 5.返回顶部 6.返回顶部 作者:ylbtech出处:http://ylbt ...
- 宿主机 && docker 常用命令
宿主机 && docker 常用命令 1.如果你想快速发现在该主机上使用最多资源的容器(或是最近的所有systemd服务),我推荐systemd-cgtop命令: 2.
- Git简单教程
该笔记总结廖雪峰Git教程, 参考网站: https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017 ...