POJ2513 【并查集+欧拉路径+trie树】

题目链接:http://poj.org/problem?id=2513

Colored Sticks

Time Limit: 5000MS   Memory Limit: 128000K
Total Submissions:40949   Accepted: 10611

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.

题目大意:给出以下字符串,代表每根棍子的两端颜色,只能将颜色相同的端点连接起来。问是否能连成一欧拉路径。

思路:

1.棍子两端无方向要求,故是无向图的欧拉路径,无向图判断欧拉路径的充要条件是:图连通(无向图的连通性可以用并查集来判断,但有向图不可以)+ 点的度全为偶/当且仅当只有2个

2.关键在于将颜色字符串映射成整型编号,有两种思路:用map直接映射(TLE),用trie树给字符串上编号。

3.具体实现在代码中,值得注意的一点是 G++才能AC。

 1 #include<stdio.h>
 2 #include<string.h>
 3 #define mem(a, b) memset(a, b, sizeof(a))
 4 const int MAXN = 250000 * 2 + 10;//最多MAXN种颜色 即最多MAXN种不同的点
 5
 6 char s1[12], s2[12];
 7 int deg[MAXN];
 8 int trie[MAXN][27], cnt, tot;
 9 int id[MAXN], pre[MAXN];
10
11 int insert(char s[12])
12 {
13     int flag = 1;
14     int len = strlen(s);
15     int root = 0;
16     for(int i = 0; i < len; i ++)
17     {
18         int id = s[i] - ‘a‘;
19         if(!trie[root][id])
20         {
21             flag = 0;  //单词之前没出现过
22             trie[root][id] = ++ cnt;
23         }
24         root = trie[root][id];
25     }
26     if(!flag)
27     {
28         tot ++;
29         id[root] = tot;
30         return id[root];
31     }
32     else
33         return id[root];
34 }
35
36 int find(int x)
37 {
38     if(pre[x] == x)
39         return x;
40     else
41     {
42         int root = find(pre[x]);
43         pre[x] = root;
44         return pre[x];
45     }
46 }
47
48 int main()
49 {
50     for(int i = 1; i <= MAXN + 1; i ++)
51         pre[i] = i;
52     while(scanf("%s%s", s1, s2) != EOF)
53     {
54         int a = insert(s1), b = insert(s2);//返回的是颜色所对应的序号
55         deg[a] ++, deg[b] ++; //点的度数 判断是否存在欧拉路径
56         int x = find(a), y = find(b); //查找根节点
57         if(x != y)
58             pre[y] = x;
59     }
60     int flag = 1;
61     for(int i = 1; i < tot; i ++) //总共有tot个不同的点
62         if(find(i) != find(i + 1))
63         {
64             flag = 0;
65             break;
66         }
67     if(flag == 0)
68         printf("Impossible\n");
69     else
70     {
71         int xx = 0;
72         for(int i = 1; i <= tot; i ++)
73             if(deg[i] % 2)
74                 xx ++;
75         if(xx == 0 || xx == 2)
76             printf("Possible\n");
77         else
78             printf("Impossible\n");
79     }
80     return 0;
81 }

原文地址:https://www.cnblogs.com/yuanweidao/p/11296325.html

时间: 2024-10-14 07:19:14

POJ2513 【并查集+欧拉路径+trie树】的相关文章

poj2513——判断是否为欧拉图(并查集,trie树)

POJ 2513    Colored Sticks 欧拉回路判定,并查集,trie树 Time Limit: 5000MS   Memory Limit: 128000K Total Submissions: 31621   Accepted: 8370 Description You are given a bunch of wooden sticks. Each endpoint of each stick is colored with some color. Is it possibl

并查集+欧拉回路+字典树 Colored Sticks POJ 2513

输入多组数据,每组数据两种颜色,表示一根木头两端的颜色,现在要将这些木头相连,要求相连部分颜色相同,问能否全部连通 提示 1)一个要判断所有的木头是否在一个集合中,即是否能相连 2)判断一种颜色出现的数量 3)一棵树如果只有0或2个点出现次数为奇数,则树可以一笔画成 #include <stdio.h> #include <string.h> #define maxn 500005 int tot; int f[maxn]; int num[maxn]; struct trie {

Codeforces Round #423 (Div. 2) C 思维,并查集 或 线段树 D 树构造,水

Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals) C. String Reconstruction   思维,并查集 或 线段树 题意:一个字符串被删除了,但给出 n条信息,要还原出可能的字典序最小的字符串.信息有:字符串ti,ki个位置xi,表明原本的字符串在xi位置是以字符串ti开头的. tags:惨遭 fst,一开始把所有字符串都存下来,排序做的,结果爆内存了.. 方法1: 考虑并查集,对于字符串 ti,在位置xi,

HDU 1512 并查集+左偏树

Monkey King Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3105    Accepted Submission(s): 1330 Problem Description Once in a forest, there lived N aggressive monkeys. At the beginning, they e

poj 2513 并查集,Trie(字典树), 欧拉路径

- Colored Sticks POJ - 2513 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?

POJ 2513 字典树+并查集+欧拉路径

Description: 给定一些木棒,木棒两端都涂上颜色,求是否能将木棒首尾相接,连成一条直线,要求不同木棒相接的一边必须是相同颜色的. 解题思路: 可以用图论中欧拉路的知识来解这道题,首先可以把木棒两端看成节点,把木棒看成边,这样相同的颜色就是同一个节点 问题便转化为: 给定一个图,是否存在“一笔画”经过涂中每一点,以及经过每一边一次. 这样就是求图中是否存在欧拉路Euler-Path.(我才知道这个就是欧拉路径...T_T) 由图论知识可以知道,无向图存在欧拉路的充要条件为: ①    

UVa 10129 (并查集 + 欧拉路径) Play on Words

题意: 有n个由小写字母的单词,要求判断是否存在某种排列是的相邻的两个单词,前一个单词末字母与后一个单词首字母相同. 分析: 将单词的两个字母看做节点,则一个单词可以看做一条有向边.那么题中所求的排列就等价于该有向图中是否存在欧拉路径. 在判断之前,首先要确定这个图是连通的,代码中用并查集来实现. 回顾一下存在欧拉路径的条件,全都是偶点或者有且仅有两个奇点.我们用deg来记录每个点的度,出度为1,入度为-1. 程序中判断存在欧拉路径的条件就是:deg全为0 或者 有两个不为0的,其中一个为1一个

ACM学习历程—SNNUOJ 1110 传输网络((并查集 &amp;&amp; 离线) || (线段树 &amp;&amp; 时间戳))(2015陕西省大学生程序设计竞赛D题)

Description Byteland国家的网络单向传输系统可以被看成是以首都 Bytetown为中心的有向树,一开始只有Bytetown建有基站,所有其他城市的信号都是从Bytetown传输过来的.现在他们开始在其他城市陆 续建立了新的基站,命令“C x“代表在城市x建立了一个新的基站,不会在同一个城市建立多个基站:城市编号为1到n,其中城市1就是首都Bytetown.在建立基站的过程中他们还 会询问某个城市的网络信号是从哪个城市传输过来的,命令”Q x“代表查询城市x的来源城市. Inpu

经典模型——并查集解决区间/树链染色问题

蒟蒻的第一篇blog 模型背景: 已知一个长度为n的序列,开始时序列的每一个元素都没有颜色(0),现进行m次操作,第i次操作将一段区间[l,r]中还未被染色的点(即a[i]=0的点)染成颜色i.问m次操作后这个区间长什么样子,并将它输出来. 数据规模约定:对于100%的数据,n,m<=10^6 问题解决 我会nm暴力! 对于每一个操作i,暴力扫描[l,r],染色,最后输出. ※期望得分:10. 并查集!没想到吧 用并查集来维护从节点i往后的区间[i,n]中第一个0出现的位置,也就是i之后第一个还