博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 2222 Keywords Search [AC自动机]
阅读量:5092 次
发布时间:2019-06-13

本文共 1162 字,大约阅读时间需要 3 分钟。

题意:给一堆模式串和一个文本串,问有多少个模式串在文本串中出现过。

AC自动机,在统计答案的时候记得将end清零就好

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define rep(i,f,t) for(int i = (f), _end = (t); i <= _end; ++i)#define dep(i,f,t) for(int i = (f), _end = (t); i >= _end; --i)#define clr(c,x) memset(c,x,sizeof(c));#define debug(x) cout<<"debug "<
<
Q; int u = 0; rep(c,0,25){ if(next[0][c]){ Q.push(next[0][c]); } } while(!Q.empty()){ u = Q.front(); Q.pop(); int fu = fail[u]; rep(c,0,25){ int v = next[u][c]; if(v){ Q.push(v); fail[v] = next[fu][c]; }else{ next[u][c] = next[fu][c]; } } } } int query(char *s){ int u = 0; int ans = 0; while(*s){ int nid = *s++ - 'a'; u = next[u][nid]; int k = u; while(k){ if(end[k]){ ans += end[k]; end[k] = 0; } k = fail[k]; } } return ans; }}ac;char str[1000009];int main(){ Rush{ ac.init(); int n; scanf("%d",&n); while(n--){ scanf("%s",str); ac.insert(str); } ac.build(); scanf("%s",str); printf("%d\n",ac.query(str)); } return 0;}

版权声明:本文为博主原创文章,未经博主允许不得转载。

转载于:https://www.cnblogs.com/DSChan/p/4861972.html

你可能感兴趣的文章
python字典
查看>>
CouchDB 1.3.0的新特性以及算法的强化
查看>>
收集WebDriver的执行命令和参数信息
查看>>
VS2010版快捷键
查看>>
SSH(Struts2+Spring+Hibernate)框架搭建流程
查看>>
数据结构与算法(三)-线性表之静态链表
查看>>
mac下的mysql报错:ERROR 1045(28000)和ERROR 2002 (HY000)的解决办法
查看>>
Hmailserver搭建邮件服务器
查看>>
django之多表查询-2
查看>>
BULK INSERT, 实战手记:让百万级数据瞬间导入SQL Server
查看>>
快速幂
查看>>
改善C#公共程序类库质量的10种方法
查看>>
AIO 开始不定时的抛异常: java.io.IOException: 指定的网络名不再可用
查看>>
MyBaits动态sql语句
查看>>
[苦逼程序员的成长之路]1、飞扬小鸟
查看>>
零基础自学用Python 3开发网络爬虫(二): 用到的数据结构简介以及爬虫Ver1.0 alpha...
查看>>
修改JEECG项目浏览器标题
查看>>
HDU4405(期望DP)
查看>>
Linux下svn的部署
查看>>
拉格朗日乘子法 那些年学过的高数
查看>>