题目链接:

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 - [欧拉路][图的连通性][字典树]的更多相关文章

  1. POJ 2513 Colored Sticks (欧拉回路+并查集+字典树)

    题目链接 Description You are given a bunch of wooden sticks. Each endpoint of each stick is colored with ...

  2. poj 2513 Colored Sticks(欧拉路径+并检查集合+特里)

    题目链接:poj 2513 Colored Sticks 题目大意:有N个木棍,每根木棍两端被涂上颜色.如今给定每一个木棍两端的颜色.不同木棍之间拼接须要颜色同样的 端才干够.问最后是否能将N个木棍拼 ...

  3. [欧拉] poj 2513 Colored Sticks

    主题链接: http://poj.org/problem? id=2513 Colored Sticks Time Limit: 5000MS   Memory Limit: 128000K Tota ...

  4. poj 2513 Colored Sticks (trie树+并查集+欧拉路)

    Colored Sticks Time Limit: 5000MS   Memory Limit: 128000K Total Submissions: 40043   Accepted: 10406 ...

  5. POJ 2513 Colored Sticks(欧拉道路+字典树+并查集)

    http://poj.org/problem?id=2513 题意: 给定一些木棒,木棒两端都涂上颜色,求是否能将木棒首尾相接,连成一条直线,要求不同木棒相接的一边必须是相同颜色的. 思路: 题目很明 ...

  6. POJ 2513 Colored Sticks(Tire+欧拉回(通)路判断)

    题目链接:http://poj.org/problem?id=2513 题目大意:你有好多根棍子,这些棍子的两端分都别涂了一种颜色.请问你手中的这些棍子能否互相拼接,从而形成一条直线呢? 两根棍子只有 ...

  7. POJ - 2513 Colored Sticks(欧拉通路+并查集+字典树)

    https://vjudge.net/problem/POJ-2513 题解转载自:優YoU  http://user.qzone.qq.com/289065406/blog/1304742541 题 ...

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

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

  9. poj 2513 Colored Sticks (trie 树)

    链接:poj 2513 题意:给定一些木棒.木棒两端都涂上颜色,不同木棒相接的一边必须是 同样的颜色.求能否将木棒首尾相接.连成一条直线. 分析:能够用欧拉路的思想来解,将木棒的每一端都看成一个结点 ...

随机推荐

  1. java webdriver的api的封装

    我们来看一下官网提供的代码写法,即最原始的写法: driver.findElement(By.id("kw")).click() 这样写是没任何问题的,但这样没有把元素对象,数据, ...

  2. 基于Centos体验自然语言处理 by Python SDK

    系统要求: CentOS 7.2 64 位操作系统 准备工作 获取 SecretId 和 SecretKey 前往 密钥管理 页面获取你的 SecretId 和 SecretKey 信息,这些信息将会 ...

  3. iOS 测试版系统安装说明(粗略翻译)

    我们常常看到在https://developer.apple.com/download/这里会有beta版本的ios系统 或者开发软件 关于beta版本的应用,其实有很大用处,好多人会在正式版没有发布 ...

  4. mysql乱码问题解决办法

    最近开发一下小项目,遇到了最常见的乱码问题. 1.数据库使用utf-8  utf-8_generic_ci编码,使用csv上传并导入数据,插入数据的时候出现了问题,有很大部分数据没有被导入,所以使用m ...

  5. [转]三步完成Source Insight 4.0 破解安装

    下载地址有更新,之前有朋友因潜在的版权问题封禁没下到,现在更新后可正常使用了. 文末有完全清除上次安装残留的方法,需要的人可以参考. —— 更新于 2018.1.21 第一步:安装    安装sour ...

  6. hibernate之关于一对多单向关联映射

    [hibernate]之关于一对多单向关联映射 基于外键的一对多关联映射! 一对多,Group(组)对于Person(人),一个组能够有多个人!ok? Hibernate主要有两种配置方法.一种是An ...

  7. JVM内存管理及垃圾回收【转】

    很多Java面试的时候,都会问到有关Java垃圾回收的问题,提到垃圾回收肯定要涉及到JVM内存管理机制,Java语言的执行效率一直被C.C++程序员所嘲笑,其实,事实就是这样,Java在执行效率方面确 ...

  8. ODbgScript 2.01帮助文档

    -------------------------------ODbgScript original pluginhttp://github.com/odbgscript--------------- ...

  9. 从git上check out指定的文件夹至本地

    当项目过大时,从服务器上拉取项目是件很头疼的事情,那么就说说怎么只拉区某个或几个文件夹至本地. git clone -n git@172.0.0.10:test/test_platform.git c ...

  10. Java知多少(10)数据类型及变量

    Java 是一种“强类型”的语言,声明变量时必须指明数据类型.变量(variable)占据一定的内存空间.不同类型的变量占据不同的大小. Java中共有8种基本数据类型,包括4 种整型.2 种浮点型. ...