递推:$d(i) $表示从第$i$个字符开始到末尾的字符串(即后缀S[i...n])的分解方案数,则$d(i) = \sum {d(i + len(x))} $,其中字符串$x$代表S[i...n]的前缀,且x可以和某个单词匹配。判断后缀串S[i...n]能和哪些单词匹配,使用字典树来实现O(100)复杂度判断。

AC代码

  1. #include <stdio.h>
  2. #include <string.h>
  3. const int MOD = ;
  4. const int maxnode = * + ;
  5. const int sigma_size = ;
  6. const int maxn = + ;
  7.  
  8. char S[maxn], sb[ + ];
  9. int d[maxn];
  10.  
  11. struct Trie {
  12. int ch[maxnode][sigma_size];
  13. int val[maxnode];
  14. int sz;
  15. void clear() {
  16. sz = ;
  17. memset(ch[], , sizeof(ch[]));
  18. }
  19. int idx(char c) {
  20. return c - 'a';
  21. }
  22.  
  23. void insert(char *s) {
  24. int u = , n = strlen(s);
  25. for(int i = ; i < n; i++) {
  26. int c = idx(s[i]);
  27. if(!ch[u][c]) {
  28. val[sz] = ;
  29. memset(ch[sz], , sizeof(ch[sz]));
  30. ch[u][c] = sz++;
  31. }
  32. u = ch[u][c];
  33. }
  34. val[u] = n;
  35. }
  36.  
  37. void query_prefix(char *s, int i, int *d) {
  38. int u = ;
  39. for(int j = ; s[j] != '\0'; j++) {
  40. int c = idx(s[j]);
  41. if(!ch[u][c]) break;
  42. u = ch[u][c];
  43. if(val[u]) {
  44. d[i] = (d[i] + d[i + val[u]]) % MOD;
  45. }
  46. }
  47. }
  48. };
  49.  
  50. Trie tree;
  51.  
  52. int main() {
  53. int m, kase = ;
  54. while(scanf("%s", S) == ) {
  55. tree.clear();
  56. scanf("%d", &m);
  57. for(int i = ; i < m; i++) {
  58. scanf("%s", sb);
  59. tree.insert(sb);
  60. }
  61. int n = strlen(S);
  62. d[n] = ;
  63. for(int i = n-; i >= ; i--) {
  64. d[i] = ;
  65. tree.query_prefix(S+i, i, d);
  66. }
  67. printf("Case %d: %d\n", kase++, d[]);
  68. }
  69. return ;
  70. }

如有不当之处欢迎指出!

UVALive - 3942 (字典树)的更多相关文章

  1. UVALive 3942 字典树+dp

    其实主要是想学一下字典树的写法,但这个题目又涉及到了DP:这个题目要求某些单词组成一个长子串的各种组合总数,数据量大,单纯枚举复杂度高,首先肯定是要把各个单词给建成字典树,但是之后该怎么推一时没想到. ...

  2. UVALive 5029 字典树

    E - Encoded Barcodes Crawling in process...Crawling failedTime Limit:3000MS    Memory Limit:0KB    6 ...

  3. UVALive 5913 字典树

    先输入n个字符串的字典,每个字符串的前缀+后缀可以组成新的合法字符串,但肯定是有重复的,问从给定的字符串,生成的所有可能的字符串为多少个 把前缀和后缀压入字典树,达到前缀和后缀的去重,首先的总和即为前 ...

  4. UVALive 3942 Remember the Word 字典树+dp

    /** 题目:UVALive 3942 Remember the Word 链接:https://vjudge.net/problem/UVALive-3942 题意:给定一个字符串(长度最多3e5) ...

  5. UVALive 3942 Remember the Word(字典树+DP)

    题目链接:https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_ ...

  6. UVALive 7712 Confusing Manuscript 字典树 查询与s的编辑距离为1的字符串数量

    /** 题目:UVALive 7712 Confusing Manuscript 链接:https://vjudge.net/problem/UVALive-7712 题意:给定n个不同的字符串,f( ...

  7. UVALive - 3942 Remember the Word[树状数组]

    UVALive - 3942 Remember the Word A potentiometer, or potmeter for short, is an electronic device wit ...

  8. LA 3942 - Remember the Word (字典树 + dp)

    https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...

  9. Trie(字典树)解析及其在编程竞赛中的典型应用举例

    摘要: 本文主要讲解了Trie的基本思想和原理,实现了几种常见的Trie构造方法,着重讲解Trie在编程竞赛中的一些典型应用. 什么是Trie? 如何构建一个Trie? Trie在编程竞赛中的典型应用 ...

随机推荐

  1. Linux主机之间ssh免密登录配置方法

    由于公司的生产环境有很多台Linux的CentOS服务器, 为了方便机子(假设两台机子A,B)互相之间免密ssh, scp命令操作,配置如下 1. 在A.B上分别创建本机的公钥和私钥,输入命令后连续三 ...

  2. 【Mac】-NO.161.Mac.1 -【MacOS Error running 'Tomcat 8.5.371': Cannot run program Permission denied】

    Style:Mac Series:Java Since:2018-09-10 End:2018-09-10 Total Hours:1 Degree Of Diffculty:5 Degree Of ...

  3. Django 分组 聚合

    base_sql = Order.objects.filter(is_paid=True, merchant=merchant_id) # 如果aggregate前没有values,得到的结果是一个字 ...

  4. jackson 流式API

    http://www.cnblogs.com/lee0oo0/articles/2652528.html Jackson提供了三种可选的JSON处理方法 1.流式API     com.fasterx ...

  5. SQL Server脚本

    -- 清楚缓冲区 DBCC DROPCLEANBUFFERS -- 删除计划高速缓存中的元素 DBCC FREEPROCCACHE -- 执行时间 SET STATISTICS TIME ON -- ...

  6. android模拟器访问PC本地接口

    一般来讲PC本地接口是localhost:8080 而在安卓模拟器上用的话,他会映射模拟器本身的,也就是说,可以把模拟器也当成一个PC端来看待,这样会好理解点吧 而在模拟器上想要访问PC本地的loca ...

  7. 【论文速读】Dan_Deng_AAAI2018_PixelLink_Detecting_Scene_Text_via_Instance_Segmentation

    Dan Deng--[AAAI2018]PixelLink_Detecting Scene Text via Instance Segmentation 作者和代码 tensorflow代码 关键词 ...

  8. Windows下的Python安装与环境变量的配置

    Windows下的Python安装与环境变量的配置 第一步:python下载: Python安装包下载地址:http://www.python.org/ 第二步:python安装: 双击下载包,进入P ...

  9. Log4j 2使用教程一【入门】

    环境 操作系统:win10log4j2版本: 2.11.0 准备 下载jar包 官网:https://logging.apache.org/log4j/2.x/download.html 把jar包放 ...

  10. ARM Mcp2515添加驱动

    Mcp2515添加驱动   2012-01-10 21:39:32 上图1: 上图2: 上图3: 之前完成了spi接口驱动,所以mcp2515也是通过spi来读写数据的.就是多加一个中断脚. 另外在2 ...