ac自动机 模板
自己写的0.0
- #include <queue>
- #include <cstring>
- #include <cstdio>
- using namespace std;
- struct AC_auto
- {
- const static int LetterSize = ;
- const static int TrieSize = * ( 1e5 + );
- int tot,root,fail[TrieSize],end[TrieSize],next[TrieSize][LetterSize];
- int newnode(void)
- {
- memset(next[tot],-,sizeof(next[tot]));
- end[tot] = ;
- return tot++;
- }
- void init(void)
- {
- tot = ;
- root = newnode();
- }
- int getidx(char x)
- {
- return x - 'a';
- }
- void insert(char *ss)
- {
- int len = strlen(ss);
- int now = root;
- for(int i = ; i < len; i++)
- {
- int idx = getidx(ss[i]);
- if(next[now][idx] == -)
- next[now][idx] = newnode();
- now = next[now][idx];
- }
- end[now]++;
- }
- void build(void)
- {
- queue<int>Q;
- fail[root] = root;
- for(int i = ; i < LetterSize; i++)
- if(next[root][i] == -)
- next[root][i] = root;
- else
- fail[next[root][i]] = root,Q.push(next[root][i]);
- while(Q.size())
- {
- int now = Q.front();Q.pop();
- for(int i = ; i < LetterSize; i++)
- if(next[now][i] == -) next[now][i] = next[fail[now]][i];
- else
- fail[next[now][i]] = next[fail[now]][i],Q.push(next[now][i]);
- }
- }
- int match(char *ss)
- {
- int len,now,res;
- len = strlen(ss),now = root,res = ;
- for(int i = ; i < len; i++)
- {
- int idx = getidx(ss[i]);
- int tmp = now = next[now][idx];
- while(tmp)
- {
- res += end[tmp];
- end[tmp] = ;//按题目修改
- tmp = fail[tmp];
- }
- }
- return res;
- }
- void debug()
- {
- for(int i = ;i < tot;i++)
- {
- printf("id = %3d,fail = %3d,end = %3d,chi = [",i,fail[i],end[i]);
- for(int j = ;j < LetterSize;j++)
- printf("%3d",next[i][j]);
- printf("]\n");
- }
- }
- };
- int main(void)
- {
- return ;
- }
从网上扒的:
- //======================
- // HDU 2222
- // 求目标串中出现了几个模式串
- //====================
- #include <stdio.h>
- #include <algorithm>
- #include <iostream>
- #include <string.h>
- #include <queue>
- using namespace std;
- struct Trie
- {
- int next[][],fail[],end[];
- int root,L;
- int newnode()
- {
- for(int i = ;i < ;i++)
- next[L][i] = -;
- end[L++] = ;
- return L-;
- }
- void init()
- {
- L = ;
- root = newnode();
- }
- void insert(char buf[])
- {
- int len = strlen(buf);
- int now = root;
- for(int i = ;i < len;i++)
- {
- if(next[now][buf[i]-'a'] == -)
- next[now][buf[i]-'a'] = newnode();
- now = next[now][buf[i]-'a'];
- }
- end[now]++;
- }
- void build()
- {
- queue<int>Q;
- fail[root] = root;
- for(int i = ;i < ;i++)
- if(next[root][i] == -)
- next[root][i] = root;
- else
- {
- fail[next[root][i]] = root;
- Q.push(next[root][i]);
- }
- while( !Q.empty() )
- {
- int now = Q.front();
- Q.pop();
- for(int i = ;i < ;i++)
- if(next[now][i] == -)
- next[now][i] = next[fail[now]][i];
- else
- {
- fail[next[now][i]]=next[fail[now]][i];
- Q.push(next[now][i]);
- }
- }
- }
- int query(char buf[])
- {
- int len = strlen(buf);
- int now = root;
- int res = ;
- for(int i = ;i < len;i++)
- {
- now = next[now][buf[i]-'a'];
- int temp = now;
- while( temp != root )
- {
- res += end[temp];
- end[temp] = ;
- temp = fail[temp];
- }
- }
- return res;
- }
- void debug()
- {
- for(int i = ;i < L;i++)
- {
- printf("id = %3d,fail = %3d,end = %3d,chi = [",i,fail[i],end[i]);
- for(int j = ;j < ;j++)
- printf("%2d",next[i][j]);
- printf("]\n");
- }
- }
- };
- char buf[];
- Trie ac;
- int main()
- {
- int T;
- int n;
- scanf("%d",&T);
- while( T-- )
- {
- scanf("%d",&n);
- ac.init();
- for(int i = ;i < n;i++)
- {
- scanf("%s",buf);
- ac.insert(buf);
- }
- ac.build();
- scanf("%s",buf);
- printf("%d\n",ac.query(buf));
- }
- return ;
- }
- struct AC_Auto{
- const static int LetterSize = ;
- const static int TrieSize = * ( 1e5 + );
- int tot;
- int fail[TrieSize];
- int suffixlink[TrieSize];
- struct node{
- int ptr[LetterSize];
- int val;
- }tree[TrieSize];
- inline int GetLetterIdx(char c){
- return c - 'a';
- }
- void init_node(node & s){
- memset( s.ptr , , sizeof( s.ptr ) );
- s.val = ;
- }
- void find(const char * str){
- int len = strlen( str );
- int j = ;
- for(int i = ; i < len ; ++ i){
- int idx = GetLetterIdx( str[i] );
- while(j && !tree[j].ptr[idx]) j = fail[j];
- j = tree[j].ptr[idx];
- if(suffixlink[j]) minv[i] = suffixlink[j];
- else minv[i] = ;
- }
- }
- void insert(const char * str){
- int len = strlen( str );
- int cur = ;
- for(int i = ; i < len ; ++ i){
- int idx = GetLetterIdx( str[i] );
- if(!tree[cur].ptr[idx]){
- tree[cur].ptr[idx] = tot;
- init_node( tree[tot++] );
- }
- cur = tree[cur].ptr[idx];
- }
- if(tree[cur].val == ) tree[cur].val = len;
- else tree[cur].val = min( tree[cur].val , len );
- }
- void build_fail(){
- queue < int > Q; // 开在栈中 , 如果节点数较多 , 可设为全局变量
- suffixlink[] = fail[] = ;
- for(int i = ; i < LetterSize ; ++ i)
- if(tree[].ptr[i]){
- int index = tree[].ptr[i];
- fail[index] = , suffixlink[index] = tree[index].val;
- Q.push( index );
- }
- while(!Q.empty()){
- int x = Q.front() ; Q.pop();
- for(int i = ; i < LetterSize ; ++ i)
- if(tree[x].ptr[i]){
- int v = tree[x].ptr[i];
- int j = fail[x];
- while( j && !tree[j].ptr[i] ) j = fail[j];
- fail[v] = tree[j].ptr[i];
- suffixlink[v] = suffixlink[fail[v]];
- if(suffixlink[v] == ){
- if(suffixlink[x]) suffixlink[v] = suffixlink[x] + ;
- }
- else if(suffixlink[x]) suffixlink[v] = min( suffixlink[v] , suffixlink[x] + );
- if(tree[v].val){
- if(suffixlink[v]==) suffixlink[v] = tree[v].val;
- else suffixlink[v] = min( suffixlink[v] , tree[v].val );
- }
- Q.push( v );
- }
- }
- }
- void init(){ tot = ; init_node( tree[] );}
- }ac_auto;
ac自动机 模板的更多相关文章
- HDU 2222 AC自动机模板题
题目: http://acm.hdu.edu.cn/showproblem.php?pid=2222 AC自动机模板题 我现在对AC自动机的理解还一般,就贴一下我参考学习的两篇博客的链接: http: ...
- Match:Keywords Search(AC自动机模板)(HDU 2222)
多模匹配 题目大意:给定很多个字串A,B,C,D,E....,然后再给你目标串str字串,看目标串中出现多少个给定的字串. 经典AC自动机模板题,不多说. #include <iostream& ...
- HDU 3065 (AC自动机模板题)
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3065 题目大意:多个模式串,范围是大写字母.匹配串的字符范围是(0~127).问匹配串中含有哪几种模 ...
- HDU 2896 (AC自动机模板题)
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2896 题目大意:多个模式串.多个匹配串.其中串的字符范围是(0~127).问匹配串中含有哪几个模式串 ...
- HDU 2222(AC自动机模板题)
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2222 题目大意:多个模式串.问匹配串中含有多少个模式串.注意模式串有重复,所以要累计重复结果. 解题 ...
- HDU 2222 (AC自动机模板题)
题意: 给一个文本串和多个模式串,求文本串中一共出现多少次模式串 分析: ac自动机模板,关键是失配函数 #include <map> #include <set> #incl ...
- hdu 2222 Keywords Search ac自动机模板
题目链接 先整理一发ac自动机模板.. #include <iostream> #include <vector> #include <cstdio> #inclu ...
- KMP与AC自动机模板
HDU 1711 Number Sequence(KMP模板题) http://acm.hdu.edu.cn/showproblem.php?pid=1711 #include<bits/std ...
- HDU3695(AC自动机模板题)
题意:给你n个字符串,再给你一个大的字符串A,问你着n个字符串在正的A和反的A里出现多少个? 其实就是AC自动机模板题啊( ╯□╰ ) 正着query一次再反着query一次就好了 /* gyt Li ...
- POJ2222 Keywords Search AC自动机模板
http://acm.hdu.edu.cn/showproblem.php?pid=2222 题意:给出一些单词,求多少个单词在字符串中出现过(单词表单词可能有相同的,这些相同的单词视为不同的分别计数 ...
随机推荐
- 百度地图API使用方法详解
最近做了个项目,其中项目中有个需求需要用到百度地图进行导航,通过查阅相关资料参考百度地图api完成了一个例子. API地址:http://developer.baidu.com/map/jsdemo. ...
- requirejs:杏仁的优化(almond)
这里只是调侃一下,“杏仁”其实指的是almond,requirejs作者的另一个开源项目,它的定位是作为requirejs的一个替代品. 本文概要: 1. 使用场景 2. 打包例子:未使用almond ...
- Asp.net EasyUI中的combogrid实现分页功能
在jquery.easyUI.js 要实现分页,必须在后台接收参数时声明两个变量:page(当前第几页),rows(每页显示多少条信息),否者easyUI前台传递不了分页参数. 这两个属性的名称在ea ...
- jQuery静态方法type使用和源码分析
jQuery.type方法是检测数据类型的工具方法,在分析其用法之前先总结下js给我们提供了那些监测数据类型的方法: 一.typeof 操作符 下面是测试代码 var data=[],a='123', ...
- delphi 事件和属性的绑定
TWindowState = (wsNormal, wsMinimized, wsMaximized); TScrollingWinControl = class(TWinControl) priva ...
- 服务 {49A27252-A326-4EF1-B698-6EBC7068833C} 的计时器作业 id {573BE459-DF82-481C-84BD-CA14D287450B} 配置刷新的上一个实例仍在运行,因此将跳过当前的实例。请考虑增加作业之间的时间间隔。
在SharePoint2007的错误日志中发现大量如下错误: 07/02/2013 16:17:25.99 OWSTIMER.EXE (0x0958) 0x097C Window ...
- Jquery全选单选功能
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm6.aspx. ...
- Android 中的编码与解码
前言:今天遇到一个问题,一个用户在登录的时候,出现登录失败.但是其他用户登录都是正常的,经过调试发现登录失败的用户的密码中有两个特殊字符: * .# . 特殊符号在提交表单的时候,出现了编码不一样的 ...
- Android C代码回调java方法
本文将讲述下列三种C代码回调java方法 1.c代码回调java空方法 2.c代码回调java int类型参数方法 3.c代码回调javaString类型参数方法 方法都差不多,先看c代码回调java ...
- iOS 内存问题
malloc: *** error for object 0x15f8a3558: incorrect checksum for freed object - object was probably ...