题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2222

Keywords Search

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 65272    Accepted Submission(s): 21782

Problem Description
In the modern time, Search engine came into the life of everybody like Google, Baidu, etc.
Wiskey also wants to bring this feature to his image retrieval system.
Every image have a long description, when users type some keywords to find the image, the system will match the keywords with description of image and show the image which the most keywords be matched.
To simplify the problem, giving you a description of image, and some keywords, you should tell me how many keywords will be match.
 
Input
First line will contain one integer means how many cases will follow by.
Each case will contain two integers N means the number of keywords and N keywords follow. (N <= 10000)
Each keyword will only contains characters 'a'-'z', and the length will be not longer than 50.
The last line is the description, and the length will be not longer than 1000000.
 
Output
Print how many keywords are contained in the description.
 
Sample Input
1
5
she
he
say
shr
her
yasherhs
 
Sample Output
3

题解:

AC自动机的模板题。模板来自kuangbin, 在此特别鸣谢!

代码如下:

 #include<bits/stdc++.h>
#define rep(i,a,n) for(int (i) = a; (i)<=(n); (i)++)
#define ms(a,b) memset((a),(b),sizeof((a)))
using namespace std;
typedef long long LL;
const double EPS = 1e-;
const int INF = 2e9;
const LL LNF = 9e18;
const int MOD = 1e9+;
const int MAXN = 5e5+; struct Trie //封装在一个结构体中
{
int next[MAXN][], fail[MAXN], end[MAXN];
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[]) //往Trie树中插入单词
{
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() //构建fail指针
{
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[]) //将字符串与Trie树进行匹配
{
int len = strlen(buf);
int now = root;
int res = ;
for(int i = ; i<len; i++)
{
now = next[now][buf[i]-'a'];
int tmp = now;
while(tmp != root)
{
res += end[tmp];
end[tmp] = ;
tmp = fail[tmp]; }
}
return res;
}
}; Trie ac;
char buf[MAXN<<];
int main()
{
int T, n;
scanf("%d",&T);
while(T--)
{
ac.init();
scanf("%d", &n);
for(int i = ; i<=n; i++)
{
scanf("%s",buf);
ac.insert(buf);
}
ac.build();
scanf("%s",buf);
printf("%d\n",ac.query(buf));
}
return ;
}

最新文章

  1. Jackson将json字符串转换成泛型List
  2. shell 判断文件是否存在
  3. asp.net分割字符串的几种方法
  4. 高版本正方教务系统上传后缀过滤不严导致能直接上传Webshell
  5. 一些java的书籍
  6. [python学习笔记]Day2
  7. python 代码片段8
  8. java 服务端解决ajax跨域问题
  9. 高速排序-c++(分别用数组和容器实现)
  10. UML_交互图
  11. HDOJ 1561 - 树形DP,泛化背包
  12. JS列
  13. python学习笔记1.1
  14. javascript数组的常用算法解析
  15. Android艺术——性能优化问题
  16. django 3.post接口开发
  17. C#程序以管理员权限运行(ZT)
  18. 如何给TableView、CollectionView添加动效
  19. Oracle 插入时间时 报错:ORA-01861: 文字与格式字符串不匹配 的解决办法
  20. 笔记 : Ubuntu部署LNMP环境

热门文章

  1. 支持C++11标准
  2. cef 下载地址
  3. Android -- 开机启动无界面后台程序
  4. 4.【nuxt起步】-具体练习一个h5实例
  5. GOOGLE VR SDK开发VR游戏,VR播放器之中的一个
  6. 绝不要在构造函数和析构过程中调用virtual函数
  7. mysql 存储引擎 InnoDB 与 MyISAM 的区别和选择
  8. bootstrap-data-target触发模态弹出窗元素的data使用 data-toggle与data-target的作用 深入ASP.NET MVC之九:Ajax支持 Asp.Net MVC4系列--进阶篇之AJAX
  9. Android Volley分析(一)——结构
  10. initializer_list、初始化列表、列表初始化