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】ps命令
Linux中的ps命令是Process Status的缩写.ps命令用来列出系统中当前运行的那些进程.ps命令列出的是当前那些进程的快照,就是执行ps命令的那个时刻的那些进程,如果想要动态的显示进程信 ...
- 趣文分享:有人将Android开发环境比作女人
(一个移动开发者大会活动推荐:http://www.eoeandroid.com/thread-303943-1-1.html) 趣文分享:有人将Android开发环境比作女人 在日常开发工作中,我们 ...
- 通过MTK迁移Mysql到EDB实战指南
1.1 迁移准备 下图是Migration toolkit(MTK)可使用的迁移功能 1 查看一下迁移源数据库testdb信息.共三张表 watermark/2/text/aHR0cDovL2Jsb2 ...
- 从Zero到Hero,OpenAI重磅发布深度强化学习资源
https://zhuanlan.zhihu.com/p/49044306 https://spinningup.openai.com/en/latest/
- python实现合并两个文件并打印输出
# python实现合并两个文件并打印输出 import fileinput file_Path1 = input("请输入第一个合并文件:") file_Path2 = inpu ...
- github desktop的使用
1.建仓库 2.添加文件 3.提交文件到本地仓库 4.撤销提交到本地仓库 或者直接Ctrl+Z 5.提交到远端仓库 6.添加一个分支 7.分支合并 1.本地仓库合并 将新分支添加的文件合并到maste ...
- spring中定时任务quartz2.2.3
定时任务几种实现方式 Java自带的java.util.Timer类,这个类允许你调度一个java.util.TimerTask任务,没怎么用过就不说了.Spring3.0以后自带的task,可以将它 ...
- 提一下InfoQ
昨天在微信读书中整理了一个"架构师"清单,把InfoQ中文社区这两年发布的电子书整理到了一起,分享给了团队成员. 如果你去研究InfoQ中文社区,就会发现其中一个人与之因缘际会的相 ...
- 卷积、矩阵乘积、高斯模糊滤波(降噪)、空域计算(2D卷积计算)、频域计算(FFT)的理解
矩阵乘积:对应行列对应元素相乘的和组成新的矩阵 两个矩阵的乘法仅当第一个矩阵A的列数和另一个矩阵B的行数相等时才能定义.如A是m×n矩阵和B是n×p矩阵,它们的乘积C是一个m×p矩阵 并将此乘积记为: ...
- Java如何查找系统的代理设置?
在Java编程中,如何查找系统的代理设置? 以下示例显示如何使用HttpURLConnection类的systemSetting()方法和getResponse()方法的put方法在系统上查找代理设置 ...