AC自己主动机的模板题。须要注意的是,对于每一个字符串,须要利用map将它映射到一个结点上,这样才干按顺序输出结果。

14360841 1449

option=com_onlinejudge&Itemid=8&page=show_problem&problem=4195" style="font-size:13.3333330154419px; margin:0px; padding:0px; color:rgb(153,0,0); text-decoration:none">Dominating Patterns

Accepted C++ 0.146 2014-10-16 11:41:35

  1. #include<stack>
  2. #include<queue>
  3. #include<map>
  4. #include<set>
  5. #include<cstdio>
  6. #include<cstring>
  7. #include<iostream>
  8. #include<algorithm>
  9. using namespace std;
  10. const int maxn = 150 * 75;
  11. const int len = 1111111;
  12. const int max_size = 26;
  13. char str[155][75];
  14. char _str[len];
  15. struct Trie{ //AC
  16. int tr[maxn][max_size];
  17. int fail[maxn];
  18. int val[maxn]; //结果
  19. int sz,root,_max; //出现次数
  20. map<int,int>countx;//计算第i个字符串出现的次数
  21. map<string,int>vis;
  22. int index(char c){
  23. return c - 'a';
  24. }
  25. int newnode(){
  26. val[sz] = 0;
  27. for(int i = 0; i < 26; i++) tr[sz][i] = -1;
  28. sz ++;
  29. return sz - 1;
  30. }
  31. void init(){
  32. sz = 0;_max = 0;
  33. root = newnode();
  34. countx.clear();
  35. vis.clear();
  36. }
  37. void insert(char *s,int id){
  38. int u = root;
  39. int n = strlen(s);
  40. for(int i = 0; i < n; i++){
  41. int c = index(s[i]);
  42. //printf("%d %d\n",u,c);
  43. if(tr[u][c] == -1)
  44. tr[u][c] = newnode();
  45. u = tr[u][c];
  46. }
  47. vis[string(s)] = u; //这个字符串相应的结点编号
  48. //printf("%d\n",u);
  49. val[u] ++;//达到这个结点的单词
  50. }
  51. void build(){
  52. queue<int>q;
  53. fail[root] = root;
  54. for(int i = 0; i < 26; i++){
  55. if(tr[root][i] == -1)
  56. tr[root][i] = root;
  57. else{
  58. fail[tr[root][i]] = root;
  59. q.push(tr[root][i]);
  60. }
  61. }
  62. while(!q.empty()){
  63. int now = q.front(); q.pop();
  64. for(int i = 0; i < 26; i++){
  65. if(tr[now][i] == -1)
  66. tr[now][i] = tr[fail[now]][i];
  67. else{
  68. fail[tr[now][i]] = tr[fail[now]][i];
  69. q.push(tr[now][i]);
  70. }
  71. }
  72. }
  73. }
  74. void countt(char *s){
  75. int n = strlen(s);
  76. int u = root;
  77. for(int i = 0; i < n; i++){
  78. u = tr[u][index(s[i])];
  79. int temp = u;
  80. while(temp != root){
  81. if(val[temp]){ //这个结点存在单词
  82. countx[temp]++; //这个结点
  83. _max = max(_max,countx[temp]);
  84. }
  85. temp = fail[temp];
  86. }
  87. }
  88. }
  89. };
  90. Trie ac;
  91. int main(){
  92. int n;
  93. while(scanf("%d",&n) && n){
  94. ac.init();
  95. for(int i = 0; i < n; i++){
  96. scanf("%s",str[i]);
  97. ac.insert(str[i],i); //插入单词
  98. }
  99. //printf("%d\n",ac.sz);
  100. ac.build();
  101. scanf("%s",_str);
  102. ac.countt(_str);
  103. printf("%d\n",ac._max);
  104. for(int i = 0; i < n; i++){
  105. if(ac.countx[ac.vis[string(str[i])]] == ac._max)
  106. printf("%s\n",str[i]);
  107. }
  108. }
  109. return 0;
  110. }

【UVA】1449-Dominating Patterns(AC自己主动机)的更多相关文章

  1. UVa 1449 - Dominating Patterns (AC自动机)

    题目大意:给出多个字符串模板,并给出一个文本串,求在文本串中出现最多的模板,输出最多的次数并输出该模板(若有多个满足,则按输入顺序输出). 思路:赤裸裸的 AC自动机,上模板. 代码: #includ ...

  2. 【UVA】11468-Substring(AC自己主动机)

    AC自己主动机的题,须要注意的,建立失配边的时候,假设结点1失配边连到的那个结点2,那个结点2是一个单词的结尾,那么这个结点1也须要标记成1(由于能够看成,这个结点包括了这个单词),之后在Trie树上 ...

  3. uva 1449 - Dominating Patterns

    简单的AC自动机: #include<cstdio> #include<cstring> #include<queue> #define maxn 150005 u ...

  4. UVA 10679 I love Strings!!!(AC自己主动机)

    http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&p ...

  5. uva 11468 - Substring(AC自己主动机+概率)

    题目链接:uva 11468 - Substring 题目大意:给出一些字符和各自字符相应的选择概率.随机选择L次后得到一个长度为L的字符串,要求该字符串不包括随意一个子串的概率. 解题思路:构造AC ...

  6. POJ 2778 DNA Sequence (AC自己主动机 + dp)

    DNA Sequence 题意:DNA的序列由ACTG四个字母组成,如今给定m个不可行的序列.问随机构成的长度为n的序列中.有多少种序列是可行的(仅仅要包括一个不可行序列便不可行).个数非常大.对10 ...

  7. hdu 2222 Keywords Search ac自己主动机

    点击打开链接题目链接 Keywords Search Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Ja ...

  8. POJ 3691 &amp; HDU 2457 DNA repair (AC自己主动机,DP)

    http://poj.org/problem?id=3691 http://acm.hdu.edu.cn/showproblem.php?pid=2457 DNA repair Time Limit: ...

  9. HDU 2896 病毒侵袭 AC自己主动机题解

    本题是在text里面查找key word的增强版.由于这里有多个text. 那么就不能够简单把Trie的叶子标志记录改动成-1进行加速了,能够使用其它技术.我直接使用个vis数组记录已经訪问过的节点, ...

随机推荐

  1. curl 浏览器模拟请求实战

    1,curl 常用选项

  2. 2013长沙网络赛H题Hypersphere (蛋疼的题目 神似邀请赛A题)

    Hypersphere Time Limit: 1 Second       Memory Limit: 32768 KB In the world of k-dimension, there's a ...

  3. express设置ejs并将后缀改为html

    http://www.cnblogs.com/-nothing-/p/4943354.html http://blog.csdn.net/macyang/article/details/8841966 ...

  4. linux 修改文件、文件夹权限

    # change owner of all the fies under dirName chown -R username dirName #change owner and the file gr ...

  5. Alice and Bob(mutiset容器)

    Alice and Bob Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) T ...

  6. 有二级目录的IIS配置

    当项目配置文件中配置了二级目录时,如下: <!--二级目录地址--> <add key="SecondCatalog" value="/hotel&qu ...

  7. Servlet页面间对象传递的方法

    Servlet页面间对象传递的方法 1.request 2.session 3.application 4.cookie 5.其它的

  8. Oracle官方版Entity Framework

    千呼萬喚始出來! Oracle官方版Entity Framework問市,邁入開發新時代 自從我得了一種"不用LINQ就不會寫資料庫程式"的病,為了滿足工作上要搭配Oracle(雖 ...

  9. Carmack在QUAKE3中使用的计算平方根的函数

    // // Carmack在QUAKE3中使用的计算平方根的函数 // float CarmSqrt(float x){ union{ int intPart; float floatPart; } ...

  10. jquery方法详解

    jquery方法详解 http://www.365mini.com/doc