Keywords Search
Keywords Search
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 25356 Accepted Submission(s): 8280
- #include <iostream>
- #include <cstdio>
- #include <cstring>
- #include <cmath>
- #include <algorithm>
- #include <string>
- #include <vector>
- #include <stack>
- #include <queue>
- #include <set>
- #include <map>
- #include <iomanip>
- #include <cstdlib>
- using namespace std;
- const int INF=0x5fffffff;
- const int MS=;
- const double EXP=1e-;
- struct node
- {
- int have;//根据情况灵活变化
- node * next[];
- }nodes[MS*]; //注意这个大小 尽量大一点
- node *root;
- int cnt,ans;
- char text[MS*];
- node * add_node(int c)
- {
- node *p=&nodes[c];
- for(int i=;i<;i++)
- p->next[i]=NULL;
- p->have=;
- return p;
- }
- void insert(char *str)
- {
- node *p=root;
- int len=strlen(str);
- for(int i=;i<len;i++)
- {
- int id=str[i]-'a';
- if(p->next[id]==NULL)
- {
- p->next[id]=add_node(cnt++);
- }
- p=p->next[id];
- }
- p->have++;
- }
- void search(char *str)
- {
- node *p=root;
- int len=strlen(str);
- for(int i=;i<len;i++)
- {
- int id=str[i]-'a';
- p=p->next[id];
- if(p==NULL)
- return ;
- if(p->have)
- {
- ans+=p->have;
- p->have=;
- }
- }
- }
- int main()
- {
- int n,i,T;
- scanf("%d",&T);
- while(T--)
- {
- cnt=;
- ans=;
- root=add_node(cnt++);
- scanf("%d",&n);
- for(i=;i<n;i++)
- {
- scanf("%s",text);
- insert(text);
- }
- scanf("%s",text);
- int len=strlen(text);
- for(i=;i<len;i++)
- {
- search(text+i);
- }
- printf("%d\n",ans);
- }
- return ;
- }
这题是AC自动机最经典的入门题。学会了kmp,Trie,就可以学习ac自动机了。
time : 280 ms
- #include <iostream>
- #include <cstdio>
- #include <cstring>
- #include <cmath>
- #include <algorithm>
- #include <string>
- #include <vector>
- #include <stack>
- #include <queue>
- #include <set>
- #include <map>
- #include <iomanip>
- #include <cstdlib>
- using namespace std;
- const int INF=0x5fffffff;
- const int MS=;
- const double EXP=1e-;
- // AC自动机 KMP TRIE
- struct node
- {
- bool isbad;
- node *pre;
- node * next[];
- int n;
- }nodes[MS*]; //注意这个大小 个数*每个的长度就不会访问非法内存
- node *root;
- int cnt,ans;
- char text[MS*];
- node * add_node(int c)
- {
- node *p=&nodes[c];
- for(int i=;i<;i++)
- p->next[i]=NULL;
- p->isbad=false;
- p->pre=NULL;
- p->n=;
- return p;
- }
- void insert(char *str)
- {
- node *p=root;
- int len=strlen(str);
- for(int i=;i<len;i++)
- {
- int id=str[i]-'a';
- if(p->next[id]==NULL)
- {
- p->next[id]=add_node(cnt++);
- }
- p=p->next[id];
- }
- p->isbad=true;
- p->n++; //终止节点
- }
- void build()
- { // 在trie树上加前缀指针
- for(int i=;i<;i++)
- nodes->next[i]=root;
- nodes->pre=NULL;
- root->pre=nodes;
- deque<node *> dq;
- dq.push_back(root);
- while(!dq.empty())
- {
- node *proot=dq.front();
- dq.pop_front();
- for(int i=;i<;i++)
- {
- node *p=proot->next[i];
- if(p!=NULL)
- {
- node *pre=proot->pre;
- while(pre)
- {
- if(pre->next[i]!=NULL) //NULL==0
- {
- p->pre=pre->next[i];
- if(p->pre->isbad)
- p->isbad=true;
- break;
- }
- else
- pre=pre->pre;
- }
- dq.push_back(p);
- }
- }
- }
- }
- void search(char *str)
- { //返回值为true,说明包含模式串
- node *p=root;
- int len=strlen(str);
- for(int i=;i<len;i++)
- {
- int id=str[i]-'a';
- while(p!=root&&p->next[id]==NULL)
- {
- p=p->pre;
- }
- p=p->next[id];
- if(p==NULL)
- {
- p=root;
- }
- node *tp=p;
- while(tp!=root&&tp->n!=)
- {
- ans+=tp->n;
- tp->n=;
- tp=tp->pre;
- }
- /*
- while(1) 是否包含模式串
- {
- if(p->next[id])
- {
- p=p->next[id];
- if(p->isbad)
- return true;
- break;
- }
- else
- p=p->pre;
- }
- */
- }
- //return false;
- }
- int main()
- {
- int n,T;
- scanf("%d",&T);
- while(T--)
- {
- cnt=;
- ans=;
- add_node(cnt++);
- root=add_node(cnt++);
- scanf("%d",&n);
- for(int i=;i<n;i++)
- {
- scanf("%s",text);
- insert(text);
- }
- build();
- scanf("%s",text);
- search(text);
- printf("%d\n",ans);
- }
- return ;
- }
- /*
- 节点p的前缀指针定义为:指向树中出现
- 过的S的最长的后缀(不能等于S)。
- 如果p节点匹配失败,该节点对应c,就沿着它的父节点的前缀指针走,直到某节点,其儿子节点
- 对应的字母也为c,把p节点的前缀指针指向该儿子节点。如果走到了root都没有找到,就指向root
- */
Keywords Search的更多相关文章
- 【HDU2222】Keywords Search AC自动机
[HDU2222]Keywords Search Problem Description In the modern time, Search engine came into the life of ...
- hdu2222 Keywords Search ac自动机
地址:http://acm.split.hdu.edu.cn/showproblem.php?pid=2222 题目: Keywords Search Time Limit: 2000/1000 MS ...
- HDU 2222 Keywords Search(AC自动机模版题)
Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others ...
- HDU2222 Keywords Search [AC自动机模板]
Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others ...
- C++之路进阶——hdu2222(Keywords Search)
/*Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) ...
- HDU 2222 Keywords Search(查询关键字)
HDU 2222 Keywords Search(查询关键字) Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K ...
- hdu----(2222)Keywords Search(ac自动机)
Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)T ...
- hdu----(2222)Keywords Search(trie树)
Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)T ...
- hdu 2222 Keywords Search ac自己主动机
点击打开链接题目链接 Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Ja ...
随机推荐
- CreateWaitableTimer和SetWaitableTimer函数(定时器)
用户感觉到软件的好用,就是可以定时地做一些工作,而不需要人参与进去.比如每天定时地升级病毒库,定时地下载电影,定时地更新游戏里的人物.要想 实现这些功能,就可以使用定时器的API函数CreateWai ...
- How Tomcat Works(十三)
本文分析tomcat容器的安全管理,servlet技术支持通过配置部署描述器(web.xml文件)来对受限内容进行访问控制:servlet容器是通过一个名为验证器的阀来支持安全限制的,当servlet ...
- UVa 297 - Quadtrees
题目:利用四叉树处理图片,给你两张黑白图片的四叉树,问两张图片叠加后黑色的面积. 分析:搜索.数据结构.把图片分成1024块1*1的小正方形,建立一位数组记录对应小正方形的颜色. 利用递归根据字符串, ...
- myeclipse 8.6安装freemarker插件
1. 打开http://sourceforge.net/projects/freemarker-ide/files/ 下载插件.2. 将其解压,将hudson.freemarker_ide_0.9.1 ...
- sql 无法识别的配置节 system.serviceModel
sql 链接实例的时候,提示 无法识别的配置节 system.serviceModelC:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Config\mac ...
- 可配置多功能门 SN74LVC1G57, 1G58, 1G97, 1G98, 1G99
Configurable Multiple-Function Gate SN74LVC1G57 SN74LVC1G58 SN74LVC1G97 SN74LVC1G98 SN74LVC1G99
- IE兼容CSS3圆角border-radius的方法(同时兼容box-shadow,text-shadow)
IE兼容CSS3圆角border-radius,box-shadow,text-shadow的方法 1.下载ie-css3.htc 2.CSS box { -moz-border-radius: 15 ...
- java面试笔试试题http://www.jobui.com/mianshiti/it/java/6827/
一.判断题(每题1分,共10分)1.Applet是一种特殊的Panel,它是Java Applet程序的最外层容器.()2.Java的源代码中定义几个类,编译结果就生成几个以.class为后缀的字节码 ...
- 获取 CPU 序列号
function GetCpuID: string; var _eax, _ebx, _ecx, _edx: Longword; s, s1, s2: string; begin asm push e ...
- nginx-1.4.4 + tcp_proxy_module手动编译安装
Nginx开源软件默认没有提供TCP协议的负载均衡,下面记录一下我的安装过程: 1. 下载nginx最新稳定版的源码 mkdir /software cd /software yum install ...