POJ 2513 - Colored Sticks - [欧拉路][图的连通性][字典树]
题目链接:
http://poj.org/problem?id=2513
http://bailian.openjudge.cn/practice/2513?lang=en_US
Time Limit: 5000MS Memory Limit: 128000K
Description
You are given a bunch of wooden sticks. Each endpoint of each stick is colored with some color. Is it possible to align the sticks in a straight line such that the colors of the endpoints that touch are of the same color?
Input
Input is a sequence of lines, each line contains two words, separated by spaces, giving the colors of the endpoints of one stick. A word is a sequence of lowercase letters no longer than 10 characters. There is no more than 250000 sticks.
Output
If the sticks can be aligned in the desired way, output a single line saying Possible, otherwise output Impossible.
Sample Input
blue red
red violet
cyan blue
blue magenta
magenta cyan
Sample Output
Possible
Hint
Huge input,scanf is recommended.
题意:
给出若干木棒,每个木棒两个端点有两个颜色,两个木棒的端点颜色相同,则可以接在一起。问是否把所有木棒接成一根。
题解:
(参考http://blog.csdn.net/lyy289065406/article/details/6647445)
将每个颜色都看成一个节点,木棒就能看成一条连接两个端点的无向边。问题就变成在给定一个无向图问是否存在欧拉路。
欧拉路存在的充要条件是:① 图是连通的; ② 所有节点的度为偶数,或者有仅有两个度数为奇数的节点。
这道题,求顶点的度数很好求,但是怎么判断图是否连通呢?通常来说,DFS/BFS或者并查集都能做。
不过,本题字典树的用处就是代替map,将输入字符串快速hash成一个值。
AC代码(BFS判图的连通性):
#include<bits/stdc++.h>
using namespace std;
const int maxn=+; int degree[*maxn];
vector<int> G[*maxn]; namespace Trie
{
const int SIZE=maxn*;
int sz;
int idtot;
struct TrieNode{
int ed;
int nxt[];
}trie[SIZE];
void init()
{
idtot=;
sz=;
}
int insert(const string& s)
{
int p=;
for(int i=;i<s.size();i++)
{
int ch=s[i]-'a';
if(!trie[p].nxt[ch]) trie[p].nxt[ch]=++sz;
p=trie[p].nxt[ch];
}
if(!trie[p].ed) trie[p].ed=++idtot;
return trie[p].ed;
}
}; bool vis[*maxn];
int bfs(int s)
{
int res=;
memset(vis,,sizeof(vis));
queue<int> Q;
Q.push(s), vis[s]=, res++;
while(!Q.empty())
{
int u=Q.front(); Q.pop();
for(int i=;i<G[u].size();i++)
{
int v=G[u][i];
if(!vis[v]) Q.push(v), vis[v]=, res++;
}
}
return res;
} int main()
{
ios::sync_with_stdio();
cin.tie(); cout.tie(); string s1,s2;
Trie::init();
while(cin>>s1>>s2)
{
int u=Trie::insert(s1), v=Trie::insert(s2);
G[u].push_back(v);
G[v].push_back(u);
degree[u]++;
degree[v]++;
} int cnt=;
for(int i=;i<=Trie::idtot;i++) {
if(degree[i]%) cnt++;
}
if(cnt== || cnt>) cout<<"Impossible\n";
else
{
if(bfs()<Trie::idtot) cout<<"Impossible\n";
else cout<<"Possible\n";
}
}
AC代码(并查集判图的连通性):
#include<cstdio>
#include<cstring>
using namespace std;
const int maxn=+; namespace Trie
{
const int SIZE=maxn*;
int sz;
int idcnt;
struct TrieNode{
int ed;
int nxt[];
}trie[SIZE];
void init()
{
idcnt=;
sz=;
}
int insert(char *s)
{
int len=strlen(s), p=;
for(int i=;i<len;i++)
{
int ch=s[i]-'a';
if(!trie[p].nxt[ch]) trie[p].nxt[ch]=++sz;
p=trie[p].nxt[ch];
}
return (trie[p].ed)?(trie[p].ed):(trie[p].ed=++idcnt);
}
}; int par[*maxn],ran[*maxn];
int find(int x){return (par[x]==x)?x:(par[x]=find(par[x]));}
void unite(int x,int y)
{
x=find(x), y=find(y);
if(x==y) return;
if(ran[x]<ran[y]) par[x]=y;
else par[y]=x, ran[x]+=(ran[x]==ran[y]);
} int degree[*maxn];
int main()
{
Trie::init();
memset(degree,,sizeof(degree));
for(int i=;i<*maxn;i++) par[i]=i,ran[i]=; char s[][];
while(scanf("%s %s",s[],s[])!=EOF)
{
int u=Trie::insert(s[]);
int v=Trie::insert(s[]);
if(find(u)!=find(v)) unite(u,v);
degree[u]++;
degree[v]++;
} int cnt=;
int z=find();
for(int i=;i<=Trie::idcnt;i++)
{
if(find(i)!=z) {
printf("Impossible\n");
return ;
} if(degree[i]%) cnt++;
if(cnt>) {
printf("Impossible\n");
return ;
}
}
if(cnt==) {
printf("Impossible\n");
return ;
} else {
printf("Possible\n");
return ;
}
}
POJ 2513 - Colored Sticks - [欧拉路][图的连通性][字典树]的更多相关文章
- POJ 2513 Colored Sticks (欧拉回路+并查集+字典树)
题目链接 Description You are given a bunch of wooden sticks. Each endpoint of each stick is colored with ...
- poj 2513 Colored Sticks(欧拉路径+并检查集合+特里)
题目链接:poj 2513 Colored Sticks 题目大意:有N个木棍,每根木棍两端被涂上颜色.如今给定每一个木棍两端的颜色.不同木棍之间拼接须要颜色同样的 端才干够.问最后是否能将N个木棍拼 ...
- [欧拉] poj 2513 Colored Sticks
主题链接: http://poj.org/problem? id=2513 Colored Sticks Time Limit: 5000MS Memory Limit: 128000K Tota ...
- poj 2513 Colored Sticks (trie树+并查集+欧拉路)
Colored Sticks Time Limit: 5000MS Memory Limit: 128000K Total Submissions: 40043 Accepted: 10406 ...
- POJ 2513 Colored Sticks(欧拉道路+字典树+并查集)
http://poj.org/problem?id=2513 题意: 给定一些木棒,木棒两端都涂上颜色,求是否能将木棒首尾相接,连成一条直线,要求不同木棒相接的一边必须是相同颜色的. 思路: 题目很明 ...
- POJ 2513 Colored Sticks(Tire+欧拉回(通)路判断)
题目链接:http://poj.org/problem?id=2513 题目大意:你有好多根棍子,这些棍子的两端分都别涂了一种颜色.请问你手中的这些棍子能否互相拼接,从而形成一条直线呢? 两根棍子只有 ...
- POJ - 2513 Colored Sticks(欧拉通路+并查集+字典树)
https://vjudge.net/problem/POJ-2513 题解转载自:優YoU http://user.qzone.qq.com/289065406/blog/1304742541 题 ...
- POJ 2513 Colored Sticks (离散化+并查集+欧拉通路)
下面两个写得很清楚了,就不在赘述. http://blog.sina.com.cn/s/blog_5cd4cccf0100apd1.htmlhttp://www.cnblogs.com/lyy2890 ...
- poj 2513 Colored Sticks (trie 树)
链接:poj 2513 题意:给定一些木棒.木棒两端都涂上颜色,不同木棒相接的一边必须是 同样的颜色.求能否将木棒首尾相接.连成一条直线. 分析:能够用欧拉路的思想来解,将木棒的每一端都看成一个结点 ...
随机推荐
- Linux 内存机制【转载】
原文地址:http://blog.csdn.net/tianlesoftware/article/details/5463790 一. 内存使用说明 Free 命令相对于top 提供了更简洁的查看系统 ...
- Swift 同构与异构
1.数据源中的同构与异构 对于 Swift 的集合数据来说,有同构和异构之分. 如果你需要讨论一群鸟类或者一批飞机,那么这样的数据是同构的,比如包含鸟类的数组 [Bird] 和包含飞机的数组 [Air ...
- Eureka微服务ID
Instance ID用于唯一标识注册到Eureka Server上的微服务实例.我们可在Eureka Server的首页直观地看到各个微服务的Instance ID.例如,图11-1中的itmuch ...
- EF+LINQ事物处理
在使用EF的情况下,怎么进行事务的处理,来减少数据操作时的失误,比如重复插入数据等等这些问题,这都是经常会遇到的一些问题 但是如果是我有多个站点,然后存在同类型的角色去操作同一条数据的同一个字段的话, ...
- Effective Java 第三版——36. 使用EnumSet替代位属性
Tips <Effective Java, Third Edition>一书英文版已经出版,这本书的第二版想必很多人都读过,号称Java四大名著之一,不过第二版2009年出版,到现在已经将 ...
- SNF快速开发平台WinForm-CS甘特图
我们在做项目当中会经常用到按时间进度查看任务,其通过条状图来显示项目,进度,和其他时间相关的系统进展的内在关系随着时间进展的情况. 甘特图包含以下三个含义: 1.以图形或表格的形式显示活动: 2.通用 ...
- Android studio ButterKnife插件
1.功能:给所有的有id的控件添加注解 2.github地址 https://github.com/avast/android-butterknife-zelezny 3.插件下载地址 http:// ...
- git合并多个提交
git合并多个提交 [时间:2016-11] [状态:Open] [关键词:git,git rebase,合并提交,commit] 0. 引言 本文是关于Git提交记录修改的方法,主要是将多个提交记录 ...
- 带cookie跨域问题的思路以及echo的解决方案
问题起因 前后端分离,前端要访问后端资源,而且需要携带cookie信息,这时碰到了跨域问题.一开始以为设置为允许跨域allow_origins为即可.可是浏览器还是拦截的请求,于是查看跨域规则,原来跨 ...
- 【iCore4 双核心板_ARM】例程五:SYSTICK定时器 实验——定时点亮LED
实验原理: 通过STM32的三个GPIO口驱动三色LED的三个通道,设定GPIO为推挽输出模式,采 用灌电流方式与LED连接,输出高电平LED灭,输出低电平LED亮,通过系统定时器实现 1s定时,每秒 ...