题目来源:http://poj.org/problem?id=1056

       http://poj.org/problem?id=3630

两题非常类似,所以在这里一并做了。

1056题目大意:

  如果一组编码中不存在一个编码是另一个编码的前缀的情况,我们就称这组编码是“可立即解码的”(immediately decodable)。我们假定编码都是二进制的,一组编码中没有相同的码。每个编码长度都不超过10,每组编码数目都在2到8之间。

  比如,一组二进制编码:{A, B, C, D},其中:A: 01  B: 10  C: 0010  D: 0000,这组编码是immediately decodable的;另一组编码:A: 01  B: 10  C: 010  D:0000 则不是immediately decodable的, 因为A是C的前缀。

写一个程序判断一组编码是不是immediately decodable的。

输入:由一组0和1组成的二进制码组成,以一个9表示一组编码的输入结束。

输出:格式见sample。


Sample Input

  1. 01
  2. 10
  3. 0010
  4. 0000
  5. 9
  6. 01
  7. 10
  8. 010
  9. 0000
  10. 9

Sample Output

  1. Set 1 is immediately decodable
  2. Set 2 is not immediately decodable

本题数据类型简单,数据规模小,暴力其实就可以过。但是本题如果不用前缀树做就显得没有价值了。

Trie树,又称前缀树字典树。Trie一词本来源于retrieval,发音[tri],但似乎更多人读为[trai]。看一下维基上的示意图应该很容易理解。

Trie树是一种用于快速检索的多叉树结构,如上图所示的Trie树中,用11个节点保存了8个字符串(to, tea, ted, ten, A, I, in, inn). 如果两个词具有相同前缀,那么从根节点到两词对应的节点的路径在公共前缀部分是重合的。显然这种数据结构非常适合这道题的实现,用一棵二叉trie树即可。每读入一个新的编码便插入树中,如果插入过程中发现当前已存在某编码是该码的前缀或该码是已存在的某码的前缀,侧该组编码不是immediately decodable的。

  1. ////////////////////////////////////////////////////////////////////
  2. // POJ1056 IMMEDIATE DECODABILITY
  3. // Memory: 144K Time: 0MS
  4. // Language: C++ Result : Accepted
  5. ////////////////////////////////////////////////////////////////////
  6.  
  7. #include <cstdio>
  8. #include <iostream>
  9. using namespace std;
  10.  
  11. struct Node {
  12. int child[];
  13. int is_leaf;
  14. };
  15. Node tree[];
  16. int tree_pointer = ;
  17. bool flag = true;;
  18.  
  19. bool insertNode (char * s, int index) {
  20. if (tree[index].is_leaf == ) {
  21. return false;
  22. }
  23. if (*s == ) {
  24. if (tree[index].child[] == && tree[index].child[] == ) {
  25. tree[index].is_leaf = ;
  26. return true;
  27. } else {
  28. return false;
  29. }
  30. }
  31. while (*s) {
  32. int d = *s - '';
  33. if (tree[index].child[d] == ) {
  34. tree[index].child[d] = tree_pointer++;
  35. }
  36. return insertNode(s + , tree[index].child[d]);
  37. }
  38. }
  39.  
  40. int main(void) {
  41. char buf[];
  42. int case_no = ;
  43. tree[].is_leaf = ;
  44. while (scanf("%s", buf) != EOF) {
  45. if (buf[] == '') {
  46. if (flag == true) {
  47. printf("Set %d is immediately decodable\n", ++case_no);
  48. } else {
  49. printf("Set %d is not immediately decodable\n", ++case_no);
  50. }
  51. tree_pointer = ;
  52. memset(tree, , sizeof(tree));
  53. flag = true;
  54. continue;
  55. }
  56. if (flag) {
  57. flag = insertNode(buf, );
  58. }
  59. }
  60. }

然后看一下3630.

题目大意:

  给出一些电话号码,判断是否存在一个号码是另一个号码前缀的情况, 如果不存在说明这些号码是consistent的。

输入:多个case组成,每个case第一行为号码数n, 接下来的n行每行为一个电话号码。

输出:对于每个case,若是consistent的输出YES, 否则输出NO。


Sample Input

  1. 2
  2. 3
  3. 911
  4. 97625999
  5. 91125426
  6. 5
  7. 113
  8. 12340
  9. 123440
  10. 12345
  11. 98346

Sample Output

  1. NO
  2. YES

两题几乎是一样的,把上题里的二叉树改为十叉树即可。

  1. //////////////////////////////////////////////////////////////////////////
  2. // POJ3630 Phone List
  3. // Memory: 2992K Time: 157MS
  4. // Language: C++ Result: Accepted
  5. //////////////////////////////////////////////////////////////////////////
  6.  
  7. #include <cstdio>
  8. #include <iostream>
  9. using namespace std;
  10.  
  11. struct Node {
  12. int child[];
  13. int flag; //0 非叶子节点;1 未标记的叶子节点;2 标记的叶子节点
  14. };
  15. Node tree[ << ];
  16. int tree_pointer = ;
  17. bool flag = true;;
  18.  
  19. bool insertNode (char * s, int index) {
  20. if (tree[index].flag == ) {
  21. return false;
  22. }
  23. if (*s == ) {
  24. if (tree[index].flag == ) {
  25. tree[index].flag = ;
  26. return true;
  27. } else {
  28. return false;
  29. }
  30. }
  31. while (*s) {
  32. int d = *s - '';
  33. if (tree[index].child[d] == ) {
  34. tree[index].child[d] = tree_pointer++;
  35. tree[tree_pointer - ].flag = ;
  36. }
  37. tree[index].flag = ;
  38. return insertNode(s + , tree[index].child[d]);
  39. }
  40. }
  41.  
  42. int main(void) {
  43. char buf[];
  44. int case_num;
  45. scanf("%d", &case_num);
  46. for (int case_no = ; case_no < case_num; ++case_no) {
  47. int n;
  48. tree_pointer = ;
  49. memset(tree, , sizeof(tree));
  50. flag = true;
  51. scanf("%d", &n);
  52. for (int num_id = ; num_id < n; ++num_id) {
  53. scanf("%s", buf);
  54. if (flag) {
  55. flag = insertNode(buf, );
  56. }
  57. }
  58. if (flag == true) {
  59. printf("YES\n");
  60. } else {
  61. printf("NO\n");
  62. }
  63. }
  64. }

POJ1056 IMMEDIATE DECODABILITY & POJ3630 Phone List的更多相关文章

  1. POJ--1056 IMMEDIATE DECODABILITY && POJ--3630 Phone List(字典树)

    题目链接 题目大意 看输入的每个字符串中是否有一个字符串是另一个字符串的前缀 #include<iostream> #include<cstring> #include< ...

  2. POJ1056 IMMEDIATE DECODABILITY【数据结构】

    题目地址:http://poj.org/problem?id=1056 Description An encoding of a set of symbols is said to be immedi ...

  3. UVa 644 Immediate Decodability

    吐槽下我的渣渣英语啊,即使叫谷歌翻译也没有看懂,最后还是自己读了好几遍题才读懂. 题目大意:题意很简单,就是给一些互不相同的由'0','1'组成的字符串,看看有没有一个字符串是否会成为另一个的开头的子 ...

  4. hdu 1305 Immediate Decodability(字典树)

    Immediate Decodability Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/O ...

  5. Immediate Decodability(字典树)

    Immediate Decodability Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/O ...

  6. UVA644 Immediate Decodability

    UVA644 Immediate Decodability Trie Trie模板题 难度几乎相等的题P2580 于是他错误的点名开始了 对于每组数据都清空树太浪费时间,所以我们只要在需要新点时预先把 ...

  7. HDU 1305 Immediate Decodability 可直接解码吗?

    题意:一个码如果是另一个码的前缀,则 is not immediately decodable,不可直接解码,也就是给一串二进制数字给你,你不能对其解码,因解码出来可能有多种情况. 思路:将每个码按长 ...

  8. 「UVA644」 Immediate Decodability(Trie

    题意翻译 本题有多组数据.每组数据给出一列以"9"结尾的仅包含'0'和'1'的字符串,如果里面有一个是另一个的子串,输出"Set &case is not imm ...

  9. POJ3630/HDU-1671 Phone List,字典树静态建树!

    Phone List POJ动态建树TLE了~~~ 题意:拨打某个电话时可能会因为和其他电话号码的前几位重复而导致错误,现在给出一张电话单,求是否有某个电话是其他电话的前缀.是则输出NO,否则输出YE ...

随机推荐

  1. LAMP 3.0 mysql配置讲解

    mysql 安装好后,我们是从安装包的 support-files 里面复制过来一个模板配置文件,默认 mysql 配置文件是在/etc/my.cnf 下,其实这个路径或者文件名字我们是可以修改的,在 ...

  2. 使用GSON来生成JSON数据

    第二种方法: 当不需要显示某个属性时,在不需要显示出的属性前加transient关键字即可满足 使用gson来解析 使用gson解析 带日期转换 集合类解析:gson中的数组与java中集合类都是对应 ...

  3. 复选框操作checked选中为true,反之为False,也可以赋值为true,false

  4. 线段树教做人系列(3) HDU 4913

    题意及思路看这篇博客就行了,讲得很详细. 下面是我自己的理解: 如果只有2,没有3的话,做法就很简单了,只需要对数组排个序,然后从小到大枚举最大的那个数.那么它对答案的贡献为(假设这个数排序后的位置是 ...

  5. STM32 C++编程 004 Adc (数模转换)类

    使用 C++ 语言给 STM32 编写一个 Adc 类 我使用的STM32芯片:STM32F103ZET6 我们使用的STM32库版本:V3.5.0 注意: 想学习本套 STM32 C++编程 的专栏 ...

  6. RPM验证与数字签名(Verify/Signature)

    RPM验证与数字签名(Verify/Signature) 摘自:https://blog.csdn.net/rhel_admin/article/details/32382391 2014年06月19 ...

  7. Entity Framework Code-First(19):Seed Data

    Seed Database in Code-First: You can insert data into your database tables during the database initi ...

  8. 无法认识patch请求

    Content-Type: application/vnd.api+jsonbase64:账号密码的设置总结:该及时消化的知识,就应该当时消化.不能拖.注意细节,一个小细节的疏忽,导致自己几乎一天的时 ...

  9. pentaho和spark-sql对接

    pentaho可以和hive做对接,所以和spark-sql做对接也是妥妥的.结果让人很失望了啊,我配置了很久都搞不定,最后脑袋突然灵机一动打通了. 1:替换pentaho自带的hive驱动. 路径 ...

  10. SQLite操作

    创建有主键的表: create table test (pkey varchar(16) primary key, value varchar(10)); 创建有复合(即key由多个字段联合组成)主键 ...