自己写的0.0

  1. #include <queue>
  2. #include <cstring>
  3. #include <cstdio>
  4. using namespace std;
  5.  
  6. struct AC_auto
  7. {
  8. const static int LetterSize = ;
  9. const static int TrieSize = * ( 1e5 + );
  10.  
  11. int tot,root,fail[TrieSize],end[TrieSize],next[TrieSize][LetterSize];
  12.  
  13. int newnode(void)
  14. {
  15. memset(next[tot],-,sizeof(next[tot]));
  16. end[tot] = ;
  17. return tot++;
  18. }
  19.  
  20. void init(void)
  21. {
  22. tot = ;
  23. root = newnode();
  24. }
  25.  
  26. int getidx(char x)
  27. {
  28. return x - 'a';
  29. }
  30.  
  31. void insert(char *ss)
  32. {
  33. int len = strlen(ss);
  34. int now = root;
  35. for(int i = ; i < len; i++)
  36. {
  37. int idx = getidx(ss[i]);
  38. if(next[now][idx] == -)
  39. next[now][idx] = newnode();
  40. now = next[now][idx];
  41. }
  42. end[now]++;
  43. }
  44.  
  45. void build(void)
  46. {
  47. queue<int>Q;
  48. fail[root] = root;
  49. for(int i = ; i < LetterSize; i++)
  50. if(next[root][i] == -)
  51. next[root][i] = root;
  52. else
  53. fail[next[root][i]] = root,Q.push(next[root][i]);
  54. while(Q.size())
  55. {
  56. int now = Q.front();Q.pop();
  57. for(int i = ; i < LetterSize; i++)
  58. if(next[now][i] == -) next[now][i] = next[fail[now]][i];
  59. else
  60. fail[next[now][i]] = next[fail[now]][i],Q.push(next[now][i]);
  61. }
  62. }
  63.  
  64. int match(char *ss)
  65. {
  66. int len,now,res;
  67. len = strlen(ss),now = root,res = ;
  68. for(int i = ; i < len; i++)
  69. {
  70. int idx = getidx(ss[i]);
  71. int tmp = now = next[now][idx];
  72. while(tmp)
  73. {
  74. res += end[tmp];
  75. end[tmp] = ;//按题目修改
  76. tmp = fail[tmp];
  77. }
  78. }
  79. return res;
  80. }
  81. void debug()
  82. {
  83. for(int i = ;i < tot;i++)
  84. {
  85. printf("id = %3d,fail = %3d,end = %3d,chi = [",i,fail[i],end[i]);
  86. for(int j = ;j < LetterSize;j++)
  87. printf("%3d",next[i][j]);
  88. printf("]\n");
  89. }
  90. }
  91. };
  92. int main(void)
  93. {
  94.  
  95. return ;
  96. }

从网上扒的:

  1. //======================
  2. // HDU 2222
  3. // 求目标串中出现了几个模式串
  4. //====================
  5. #include <stdio.h>
  6. #include <algorithm>
  7. #include <iostream>
  8. #include <string.h>
  9. #include <queue>
  10. using namespace std;
  11.  
  12. struct Trie
  13. {
  14. int next[][],fail[],end[];
  15. int root,L;
  16. int newnode()
  17. {
  18. for(int i = ;i < ;i++)
  19. next[L][i] = -;
  20. end[L++] = ;
  21. return L-;
  22. }
  23. void init()
  24. {
  25. L = ;
  26. root = newnode();
  27. }
  28. void insert(char buf[])
  29. {
  30. int len = strlen(buf);
  31. int now = root;
  32. for(int i = ;i < len;i++)
  33. {
  34. if(next[now][buf[i]-'a'] == -)
  35. next[now][buf[i]-'a'] = newnode();
  36. now = next[now][buf[i]-'a'];
  37. }
  38. end[now]++;
  39. }
  40. void build()
  41. {
  42. queue<int>Q;
  43. fail[root] = root;
  44. for(int i = ;i < ;i++)
  45. if(next[root][i] == -)
  46. next[root][i] = root;
  47. else
  48. {
  49. fail[next[root][i]] = root;
  50. Q.push(next[root][i]);
  51. }
  52. while( !Q.empty() )
  53. {
  54. int now = Q.front();
  55. Q.pop();
  56. for(int i = ;i < ;i++)
  57. if(next[now][i] == -)
  58. next[now][i] = next[fail[now]][i];
  59. else
  60. {
  61. fail[next[now][i]]=next[fail[now]][i];
  62. Q.push(next[now][i]);
  63. }
  64. }
  65. }
  66. int query(char buf[])
  67. {
  68. int len = strlen(buf);
  69. int now = root;
  70. int res = ;
  71. for(int i = ;i < len;i++)
  72. {
  73. now = next[now][buf[i]-'a'];
  74. int temp = now;
  75. while( temp != root )
  76. {
  77. res += end[temp];
  78. end[temp] = ;
  79. temp = fail[temp];
  80. }
  81. }
  82. return res;
  83. }
  84. void debug()
  85. {
  86. for(int i = ;i < L;i++)
  87. {
  88. printf("id = %3d,fail = %3d,end = %3d,chi = [",i,fail[i],end[i]);
  89. for(int j = ;j < ;j++)
  90. printf("%2d",next[i][j]);
  91. printf("]\n");
  92. }
  93. }
  94. };
  95. char buf[];
  96. Trie ac;
  97. int main()
  98. {
  99. int T;
  100. int n;
  101. scanf("%d",&T);
  102. while( T-- )
  103. {
  104. scanf("%d",&n);
  105. ac.init();
  106. for(int i = ;i < n;i++)
  107. {
  108. scanf("%s",buf);
  109. ac.insert(buf);
  110. }
  111. ac.build();
  112. scanf("%s",buf);
  113. printf("%d\n",ac.query(buf));
  114. }
  115. return ;
  116. }
  1. struct AC_Auto{
  2. const static int LetterSize = ;
  3. const static int TrieSize = * ( 1e5 + );
  4. int tot;
  5. int fail[TrieSize];
  6. int suffixlink[TrieSize];
  7.  
  8. struct node{
  9. int ptr[LetterSize];
  10. int val;
  11. }tree[TrieSize];
  12.  
  13. inline int GetLetterIdx(char c){
  14. return c - 'a';
  15. }
  16.  
  17. void init_node(node & s){
  18. memset( s.ptr , , sizeof( s.ptr ) );
  19. s.val = ;
  20. }
  21.  
  22. void find(const char * str){
  23. int len = strlen( str );
  24. int j = ;
  25. for(int i = ; i < len ; ++ i){
  26. int idx = GetLetterIdx( str[i] );
  27. while(j && !tree[j].ptr[idx]) j = fail[j];
  28. j = tree[j].ptr[idx];
  29. if(suffixlink[j]) minv[i] = suffixlink[j];
  30. else minv[i] = ;
  31. }
  32. }
  33.  
  34. void insert(const char * str){
  35. int len = strlen( str );
  36. int cur = ;
  37. for(int i = ; i < len ; ++ i){
  38. int idx = GetLetterIdx( str[i] );
  39. if(!tree[cur].ptr[idx]){
  40. tree[cur].ptr[idx] = tot;
  41. init_node( tree[tot++] );
  42. }
  43. cur = tree[cur].ptr[idx];
  44. }
  45. if(tree[cur].val == ) tree[cur].val = len;
  46. else tree[cur].val = min( tree[cur].val , len );
  47. }
  48.  
  49. void build_fail(){
  50. queue < int > Q; // 开在栈中 , 如果节点数较多 , 可设为全局变量
  51. suffixlink[] = fail[] = ;
  52. for(int i = ; i < LetterSize ; ++ i)
  53. if(tree[].ptr[i]){
  54. int index = tree[].ptr[i];
  55. fail[index] = , suffixlink[index] = tree[index].val;
  56. Q.push( index );
  57. }
  58. while(!Q.empty()){
  59. int x = Q.front() ; Q.pop();
  60. for(int i = ; i < LetterSize ; ++ i)
  61. if(tree[x].ptr[i]){
  62. int v = tree[x].ptr[i];
  63. int j = fail[x];
  64. while( j && !tree[j].ptr[i] ) j = fail[j];
  65. fail[v] = tree[j].ptr[i];
  66. suffixlink[v] = suffixlink[fail[v]];
  67. if(suffixlink[v] == ){
  68. if(suffixlink[x]) suffixlink[v] = suffixlink[x] + ;
  69. }
  70. else if(suffixlink[x]) suffixlink[v] = min( suffixlink[v] , suffixlink[x] + );
  71. if(tree[v].val){
  72. if(suffixlink[v]==) suffixlink[v] = tree[v].val;
  73. else suffixlink[v] = min( suffixlink[v] , tree[v].val );
  74. }
  75. Q.push( v );
  76. }
  77. }
  78. }
  79.  
  80. void init(){ tot = ; init_node( tree[] );}
  81.  
  82. }ac_auto;

ac自动机 模板的更多相关文章

  1. HDU 2222 AC自动机模板题

    题目: http://acm.hdu.edu.cn/showproblem.php?pid=2222 AC自动机模板题 我现在对AC自动机的理解还一般,就贴一下我参考学习的两篇博客的链接: http: ...

  2. Match:Keywords Search(AC自动机模板)(HDU 2222)

    多模匹配 题目大意:给定很多个字串A,B,C,D,E....,然后再给你目标串str字串,看目标串中出现多少个给定的字串. 经典AC自动机模板题,不多说. #include <iostream& ...

  3. HDU 3065 (AC自动机模板题)

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3065 题目大意:多个模式串,范围是大写字母.匹配串的字符范围是(0~127).问匹配串中含有哪几种模 ...

  4. HDU 2896 (AC自动机模板题)

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2896 题目大意:多个模式串.多个匹配串.其中串的字符范围是(0~127).问匹配串中含有哪几个模式串 ...

  5. HDU 2222(AC自动机模板题)

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2222 题目大意:多个模式串.问匹配串中含有多少个模式串.注意模式串有重复,所以要累计重复结果. 解题 ...

  6. HDU 2222 (AC自动机模板题)

    题意: 给一个文本串和多个模式串,求文本串中一共出现多少次模式串 分析: ac自动机模板,关键是失配函数 #include <map> #include <set> #incl ...

  7. hdu 2222 Keywords Search ac自动机模板

    题目链接 先整理一发ac自动机模板.. #include <iostream> #include <vector> #include <cstdio> #inclu ...

  8. KMP与AC自动机模板

    HDU 1711 Number Sequence(KMP模板题) http://acm.hdu.edu.cn/showproblem.php?pid=1711 #include<bits/std ...

  9. HDU3695(AC自动机模板题)

    题意:给你n个字符串,再给你一个大的字符串A,问你着n个字符串在正的A和反的A里出现多少个? 其实就是AC自动机模板题啊( ╯□╰ ) 正着query一次再反着query一次就好了 /* gyt Li ...

  10. POJ2222 Keywords Search AC自动机模板

    http://acm.hdu.edu.cn/showproblem.php?pid=2222 题意:给出一些单词,求多少个单词在字符串中出现过(单词表单词可能有相同的,这些相同的单词视为不同的分别计数 ...

随机推荐

  1. 百度地图API使用方法详解

    最近做了个项目,其中项目中有个需求需要用到百度地图进行导航,通过查阅相关资料参考百度地图api完成了一个例子. API地址:http://developer.baidu.com/map/jsdemo. ...

  2. requirejs:杏仁的优化(almond)

    这里只是调侃一下,“杏仁”其实指的是almond,requirejs作者的另一个开源项目,它的定位是作为requirejs的一个替代品. 本文概要: 1. 使用场景 2. 打包例子:未使用almond ...

  3. Asp.net EasyUI中的combogrid实现分页功能

    在jquery.easyUI.js 要实现分页,必须在后台接收参数时声明两个变量:page(当前第几页),rows(每页显示多少条信息),否者easyUI前台传递不了分页参数. 这两个属性的名称在ea ...

  4. jQuery静态方法type使用和源码分析

    jQuery.type方法是检测数据类型的工具方法,在分析其用法之前先总结下js给我们提供了那些监测数据类型的方法: 一.typeof 操作符 下面是测试代码 var data=[],a='123', ...

  5. delphi 事件和属性的绑定

    TWindowState = (wsNormal, wsMinimized, wsMaximized); TScrollingWinControl = class(TWinControl) priva ...

  6. 服务 {49A27252-A326-4EF1-B698-6EBC7068833C} 的计时器作业 id {573BE459-DF82-481C-84BD-CA14D287450B} 配置刷新的上一个实例仍在运行,因此将跳过当前的实例。请考虑增加作业之间的时间间隔。

    在SharePoint2007的错误日志中发现大量如下错误: 07/02/2013 16:17:25.99     OWSTIMER.EXE (0x0958)     0x097C    Window ...

  7. Jquery全选单选功能

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm6.aspx. ...

  8. Android 中的编码与解码

    前言:今天遇到一个问题,一个用户在登录的时候,出现登录失败.但是其他用户登录都是正常的,经过调试发现登录失败的用户的密码中有两个特殊字符: * .#  . 特殊符号在提交表单的时候,出现了编码不一样的 ...

  9. Android C代码回调java方法

    本文将讲述下列三种C代码回调java方法 1.c代码回调java空方法 2.c代码回调java int类型参数方法 3.c代码回调javaString类型参数方法 方法都差不多,先看c代码回调java ...

  10. iOS 内存问题

    malloc: *** error for object 0x15f8a3558: incorrect checksum for freed object - object was probably ...