题意:每一个单词的长度最小2,最大1000,单词开头的字母和另外一个单词的末尾一样就可以连接起来,解所有的单词是不是都可以连接起来,没有遗漏的

把每一个单词的第一个字母当成一个结点,最后一个单词也作为一个结点,表示第一个字母有一条路径走到最后一个单词,题目的意思就转化为,单词开头字母和结尾

字母组成的图是不是一个联通图,并且这个图存在欧拉通路.

欧拉通路判定(不一定是成环),图中只有俩个结点的度是奇数,终点的入度比出度大1,起点的出度比入度大1,其他点的入度必须等于出度.

欧拉通路的判断+起点和终点的出度等于入度那就是欧拉回路了,但是这个题只要判断通路.

使用了并查集判断图是否联通.

AC时间:30ms

#include <iostream>
#include<stdio.h>
#include<math.h>
#include<memory.h>
using namespace std; int const max = 'z';
int const min = 'a';
int const length = 'z' - 'a' + 1;
void _init(int *a, int length);
int find(int key, int *a);
void join(int k1, int k2, int *a); int main()
{
freopen("d:\\1.txt", "r", stdin);
int c;
cin >> c;
string yes = "Ordering is possible.";
string no = "The door cannot be opened.";
while (c--)
{
int n;
cin >> n;
string str;
if (n == 1)
{
cin >> str;
cout << yes << endl;
continue;
}
int set[length];
int duIn[length];
int duOut[length];
int vis[length];
memset(vis, 0, sizeof(vis));
memset(duIn, 0, sizeof(duIn));
memset(duOut, 0, sizeof(duIn));
_init(set, length);
while (n--)
{
cin >> str;
int s, e;
s = str[0];
s -= 'a';
e = str[str.length() - 1];
e -= 'a';
duOut[s]++;
duIn[e]++;
vis[s] = 1;
vis[e] = 1;
join(s, e, set);
}
//判断度和根结点
int p = -1;
int s = 0;
int ok = 1;
for (int i = 0; i < length; i++)
{
if (!vis[i])
continue;
int key = find(i, set);
if (p == -1)
{
p = key;
}
else if (key != p)
{
ok = 0;
break;
}
if (duIn[i] != duOut[i])
{
int t = duIn[i] - duOut[i];
if ((t == -1 || t == 1) && (s <= 1))
{
t++;
}
else
{
ok=0;
break;
}
}
}
if (ok)
cout << yes << endl;
else
cout << no << endl; }
return 0;
} void join(int k1, int k2, int* a)
{
int p1 = find(k1, a);
int p2 = find(k2, a);
if (p1 != p2)
a[p1] = p2;
} int find(int key, int *a)
{
return key == a[key] ? key : a[key] = find(a[key], a);
} void _init(int* a, int length)
{
for (int i = 0; i < length; i++)
a[i] = i;
}

  

uva-10129-欧拉通路的更多相关文章

  1. UVA 10129 Play on Words (欧拉通路)

    本文链接:http://www.cnblogs.com/Ash-ly/p/5398627.html 题意: 输入N(N <= 100000)个单词,是否可以把所有这些单词排成一个序列,使得每个单 ...

  2. UVa 12118 检查员的难题 (dfs判连通, 构造欧拉通路)

    题意: 分析: 欧拉通路:图连通:图中只有0个或2个度为奇数的结点 这题我们只需要判断选择的边构成多少个联通块, 再记录全部联通块一共有多少个奇度顶点. 然后我们在联通块中连线, 每次连接两个联通块就 ...

  3. Uva10129 - Play on Words 欧拉通路 DFS

    题目链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=105& ...

  4. FZU 2112 并查集、欧拉通路

    原题:http://acm.fzu.edu.cn/problem.php?pid=2112 首先是,票上没有提到的点是不需要去的. 然后我们先考虑这个图有几个连通分量,我们可以用一个并查集来维护,假设 ...

  5. POJ 2337 Catenyms(有向图的欧拉通路)

    题意:给n个字符串(3<=n<=1000),当字符串str[i]的尾字符与str[j]的首字符一样时,可用dot连接.判断用所有字符串一次且仅一次,连接成一串.若可以,输出答案的最小字典序 ...

  6. POJ 1780 Code(有向图的欧拉通路)

    输入n(1<=n<=6),输出长度为10^n + n -1 的字符串答案. 其中,字符串以每n个为一组,使得所有组都互不相同,且输出的字符串要求字典序最小. 显然a[01...(n-1)] ...

  7. HDU1116 Play on Words(有向图欧拉通路)

    我把单词当作点,然后这样其实是不对的,这样就要判定是否是哈密顿通路.. 这题应该把单词的首尾单词当作点,而单词本身就是边,那样就是判定欧拉通路了. 有向图包含欧拉通路的充要条件是:首先基图连通,然后是 ...

  8. 欧拉通路-Play on Words 分类: POJ 图论 2015-08-06 19:13 4人阅读 评论(0) 收藏

    Play on Words Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 10620 Accepted: 3602 Descri ...

  9. POJ 2513 Colored Sticks (离散化+并查集+欧拉通路)

    下面两个写得很清楚了,就不在赘述. http://blog.sina.com.cn/s/blog_5cd4cccf0100apd1.htmlhttp://www.cnblogs.com/lyy2890 ...

  10. POJ 1386 有向图欧拉通路

    题意:给你一些字符串,这些字符串可以首位相接(末位置如果和另一个字符串的首位置相同的话就可以相连) .然后问你是否可以全部连起来. 思路:就是取出每个字符串的首尾位置,然后求出出度和入度,根据有向欧拉 ...

随机推荐

  1. / is not a valid selector

  2. [LeetCode&Python] Problem 617. Merge Two Binary Trees

    Given two binary trees and imagine that when you put one of them to cover the other, some nodes of t ...

  3. 值得收藏的批处理程序 - imsoft.cnblogs

    文件强力删除.bat @echo off @echo 文件马上被强制删除 @echo 确定吗? pause DEL /F /A /Q \\?\%1 RD /S /Q \\?\%1 虚拟Wi-Fi.ba ...

  4. hihocoder1545 : 小Hi和小Ho的对弈游戏(树上博弈&nim博弈)

    描述 小Hi和小Ho经常一起结对编程,他们通过各种对弈游戏决定谁担任Driver谁担任Observer. 今天他们的对弈是在一棵有根树 T 上进行的.小Hi和小Ho轮流进行删除操作,其中小Hi先手. ...

  5. pymysql模块操作数据库

    pymysql模块是python操作数据库的一个模块   connect()创建数据库链接,参数是连接数据库需要的连接参数 使用方式: 模块名称.connect() 参数: host=数据库ip po ...

  6. HDU 2544:最短路

    最短路 Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submiss ...

  7. spfa【模板】

    #include<iostream> #include<cstdio> #include<cstring> #include<queue> using ...

  8. struts2访问ServletAPI方式和获取参数的方式

    一.访问ServletAPI的三种方式 方式1:通过让Action类去实现感知接口. 此时项目依赖:servlet-api.jar. ServletRequestAware:感知HttpServlet ...

  9. watchtower 自动更新容器的工具

    watchtower 自动更新容器的工具 安装 使用docker docker run -d \ --name watchtower \ -v /var/run/docker.sock:/var/ru ...

  10. mysql 变量名称的使用不当的一个错误

    对于开发来说重要的是按照规范进行开发. 昨天自己在进行开发测试的时候,编写mysql 的一个存储过程 ,代码是比较简单的 就是根据名称查询对应的数据并返回 DELIMITER // CREATE PR ...