HDU 2222 Keywords Search(查询关键字)

Time Limit: 2000/1000 MS (Java/Others)

Memory Limit: 131072/131072 K (Java/Others)

【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.

当今社会,诸如谷歌,百度等搜索引擎不断深入人心。

Wiskey想把这个功能加入他的图片搜索系统。

每张图都有一串很长的描述,当用户输入一些关键字去搜索图片时,系统会匹配描述图片的关键字并显示有最多关键字匹配的图片。

【Input】

【输入】

First line will contain one integer means how many cases will follow by.

Each case will contain one 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.

第一行有一个整数随后测试用例数量。

每个测试用例。

每个测试用例有一个整数N表示关键字数量与随后有N个关键字。(N <= 10000)

每个关键字只包含字符'a'-'z',并且其长度不大于50。

最后一行是此图片的描述,并且其长度不大于1000000。

【Output】

【输出】

Print how many keywords are contained in the description.

输出描述中包含的关键字数量。

【Sample Input - 输入样例】

【Sample Output - 输出样例】

1

5

she

he

say

shr

her

yasherhs

3

【题解】

AC自动机入门题,不过数据不全面,里面没有考虑回头匹配子串情况的数据(个人觉得这是KMP的AC自动机的主要不同之处,Trie图不会,哪天被打脸了再说)

例如:

1

2

abc

b

abc

输出1的代码居然也能A……而且貌似这个问题被提出来很久了,一直没有改善。

注意匹配的是关键字数量,关键字可以相同,不过可以看成匹配一个关键字就去掉一个关键字。

【代码 C++】

 #include <cstdio>
#include <cstring>
#include <queue>
struct Node{
int next[], fail, isWord;
}tr[];
int it;
char text[]; void build(){
it = ;
memset(tr, , sizeof(tr));
int n, i, j, w;
char word[];
scanf("%d", &n), getchar();
while (n--){
gets(word);
for (i = j = ; word[i]; ++i){
w = word[i] - 'a';
if (!tr[j].next[w]) tr[j].next[w] = ++it;
j = tr[j].next[w];
}
++tr[j].isWord;
}
}
void setFail(){
std::queue<int> q, last;
int now, pre, next, i, j;
for (i = ; i < ; ++i){
if (tr[].next[i]) q.push(tr[].next[i]), last.push();
} while (!q.empty()){
now = q.front(); q.pop();
pre = last.front(); last.pop();
for (i = ; i < ; ++i){
next = tr[now].next[i];
if (next){
q.push(next);
if (tr[pre].next[i]) j = pre;
else j = ;
if (tr[j].next[i]){
tr[next].fail = tr[j].next[i];
last.push(tr[j].next[i]);
}
else last.push();
}
}
}
}
int fid(){
gets(text);
int i, iTR, opt, w, temp;
for (i = iTR = opt = ; text[i]; ++i){
w = text[i] - 'a';
if (tr[iTR].next[w]) iTR = tr[iTR].next[w];
else{
if (iTR) --i;
iTR = tr[iTR].fail;
}
for (temp = iTR; ~tr[temp].isWord; temp = tr[temp].fail){
opt += tr[temp].isWord;
tr[temp].isWord = -;
}
}
return opt;
}
int main(){
int t;
scanf("%d", &t);
while (t--){
build();
setFail();
printf("%d\n", fid());
}
return ;
}

自己面向图片编程的代码……

 #include <cstdio>
#include <cstring>
#include <queue>
struct Node{
int next[], fail, isWord;
}tr[];
int it; void build(){
it = ;
memset(tr, , sizeof(tr));
int n, i, j, w;
char word[];
scanf("%d", &n), getchar();
while (n--){
gets(word);
for (i = j = ; word[i]; ++i){
w = word[i] - 'a';
if (!tr[j].next[w]) tr[j].next[w] = ++it;
j = tr[j].next[w];
}
++tr[j].isWord;
}
}
void setFail(){
std::queue<int> q;
int now, next, i;
for (i = ; i < ; ++i) if (tr[].next[i]) q.push(tr[].next[i]); while (!q.empty()){
now = q.front(); q.pop();
for (i = ; i < ; ++i){
if (next = tr[now].next[i]){
q.push(next);
tr[next].fail = tr[tr[now].fail].next[i];
}
else tr[now].next[i] = tr[tr[now].fail].next[i];
}
}
}
int fid(){
char text[];
gets(text);
int i, iTR, opt, temp;
for (i = iTR = opt = ; text[i]; ++i){
iTR = tr[iTR].next[text[i] - 'a'];
for (temp = iTR; ~tr[temp].isWord; temp = tr[temp].fail){
opt += tr[temp].isWord;
tr[temp].isWord = -;
}
}
return opt;
}
int main(){
int t;
scanf("%d", &t);
while (t--){
build();
setFail();
printf("%d\n", fid());
}
return ;
}

参考kuangbin巨后稍微简化的代码

HDU 2222 Keywords Search(查询关键字)的更多相关文章

  1. HDU 2222 Keywords Search(AC自动机模版题)

    Keywords Search Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others ...

  2. HDU 2222 Keywords Search(瞎搞)

    Keywords Search Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others ...

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

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

  4. hdu 2222 Keywords Search 模板题

    Keywords Search Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others ...

  5. hdu 2222 Keywords Search - Aho-Corasick自动机

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submissio ...

  6. hdu 2222 Keywords Search ac自动机入门

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2222 题意:有N(N <= 10000)个长度不超过50的模式串和一个长度不超过1e6的文本串. ...

  7. hdu 2222 Keywords Search

    链接:http://acm.hdu.edu.cn/showproblem.php?pid=2222 思路:裸AC自动机,直接贴代码做模板 #include<stdio.h> #includ ...

  8. HDU 2222 Keywords Search(AC自动机模板题)

    http://acm.hdu.edu.cn/showproblem.php?pid=2222 题意:给出多个单词,最后再给出一个模式串,求在该模式串中包含了多少个单词. 思路: AC自动机的模板题. ...

  9. 【刷题】HDU 2222 Keywords Search

    Problem Description In the modern time, Search engine came into the life of everybody like Google, B ...

随机推荐

  1. 查找(AVL平衡二叉树)

    [1]为什么需要平衡二叉树? 矛盾是推进事物向前发展的源动力. 那么平衡二叉树是从哪里来?肯定是有矛盾存在的.请看程来师的分析: [2]什么是平衡二叉树? 平衡二叉树的基本认识: [3]平衡二叉树的构 ...

  2. 关闭 Windows 的常用端口

    netstat -ano 可以看到目前开着哪些端口 netstat -ano|findstr <端口号>   可以找到开放的端口的那条,最后还列出了 PID. 然后到任务管理器中,你可以查 ...

  3. java 使用反射技术解耦

    1.调用的代码 /src/de/test.java package de; public class Test { public static void main(String[] args) { D ...

  4. Dynamics AX 2012 R2 在增强入站端口中找不到自定义服务操作

        Reinhard写好自定义服务A,添加好服务操作A1,A2,A3.....     然后,Reinhard在增强的入站端口,选择服务操作时,却找不到这些A1,A2,A3.     查找相关资料 ...

  5. 【Pro ASP.NET MVC 3 Framework】.学习笔记.8.SportsStore:管理

    管理功能,如何身份认证,对controller和action方法过滤安全的访问,并在用户需要时提供证书. 1 添加分类管理 方便管理的controller,有两类页面,List页面和edit页面. 1 ...

  6. mysql delete数据 空间占用不减少的解决办法

    今天空间商告诉我数据库空间满了,检查了一下,发现网站用户行为记录数据表竟然占了20多MB.积累了半年了,该删除释放一下空间了.果断delete之后发现数据库空间竟然没少,虽然数据记录数是零. 原来这是 ...

  7. PHP将多张小图拼接成一张大图

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < ...

  8. initComponents()方法

    initComponents()是在使用GUI工具设计GUI界面时,NetBeans系统自动生成的方法. 其功能是在界面添加各个组件,并为它们注册监听器. 把initComponents()放在构造方 ...

  9. YTU 2297: KMP模式匹配 三(串)

    2297: KMP模式匹配 三(串) 时间限制: 1 Sec  内存限制: 128 MB 提交: 25  解决: 16 [提交][状态][讨论版] [Edit] [TestData] 题目描述 输入一 ...

  10. 读取EXCEL

    package com.wxgs.ch04; import java.io.File;import java.io.IOException; import jxl.Cell;import jxl.Sh ...