算法学习
C++ 及算法
C++博客
首页
新随笔
联系
管理
HDU 2222 Keywords Search
#include
<
iostream
>
#include
<
queue
>
using
namespace
std;
struct
Trie
{
int
cnt;
Trie
*
next[
26
],
*
prefix;
}
Table[
500000
];
int
index
=
0
;
Trie
*
root;
char
str[
1000001
];
void
init()
{
index
=
0
;
root
=
&
Table[index];
memset( Table[
0
].next,
0
,
sizeof
(Table[
0
].next) );
Table[
0
].cnt
=
0
; Table[
0
].prefix
=
NULL;
}
void
insert(
char
*
s )
{
Trie
*
r
=
root;
while
(
*
s )
{
int
t
=
*
s
-
'
a
'
;
if
(
!
r
->
next[t] )
{
++
index;
memset( Table[index].next,
0
,
sizeof
(Table[index].next) );
Table[index].cnt
=
0
; Table[index].prefix
=
NULL;
r
->
next[t]
=
&
Table[index];
}
r
=
r
->
next[t]; s
++
;
}
r
->
cnt
++
;
}
void
get_prefix()
{
Trie
*
r
=
root;
queue
<
Trie
*>
q;
q.push( root ); root
->
prefix
=
NULL;
while
(
!
q.empty() )
{
Trie
*
father
=
q.front(); q.pop();
for
(
int
i
=
0
; i
<
26
;
++
i )
if
( father
->
next[i] )
{
Trie
*
tmp
=
father
->
prefix;
while
( tmp
&&
!
tmp
->
next[i] ) tmp
=
tmp
->
prefix;
if
(
!
tmp ) father
->
next[i]
->
prefix
=
root;
else
father
->
next[i]
->
prefix
=
tmp
->
next[i];
q.push( father
->
next[i] );
}
}
}
int
ac_run()
{
Trie
*
p
=
root;
int
ans
=
0
;
char
*
s
=
str;
while
(
*
s )
{
int
t
=
*
s
-
'
a
'
;
while
(
!
p
->
next[t]
&&
p
!=
root ) p
=
p
->
prefix;
p
=
p
->
next[t];
if
(
!
p ) p
=
root;
Trie
*
tp
=
p;
while
( tp
!=
root
&&
tp
->
cnt
!=
-
1
)
{
ans
+=
tp
->
cnt;
tp
->
cnt
=
-
1
;
tp
=
tp
->
prefix;}
s
++
;
}
return
ans;
}
int
main()
{
int
test;
scanf(
"
%d
"
,
&
test );
while
( test
--
)
{
int
n;
char
s[
55
];
scanf(
"
%d
"
,
&
n ); init(); getchar();
for
(
int
i
=
0
; i
<
n;
++
i )
{
gets(s); insert(s); }
gets(str); get_prefix();
printf(
"
%d\n
"
, ac_run() );
}
return
0
;
}
posted on 2009-04-15 14:17
Darren
阅读(378)
评论(0)
编辑
收藏
引用
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
留言簿
(5)
给我留言
查看公开留言
查看私人留言
随笔分类
动态规划(13)
数据结构(11)
搜索(9)
图论(10)
未分类(6)
ACMers
搜索
积分与排名
积分 - 108976
排名 - 228
最新随笔
1. 换个博客,重新开始学习。。。
2. pku 1691 Painting A Board 状态压缩DP
3. HDU 1255
4. PKU 1151
5. 2009年ACM-ICPC亚洲区预选赛共设十五个赛区如下(按现场赛日期排序)
6. acmer必看的26个对acm态度
7. ZJU 3228 Searching the String ( AC 自动机 )
8. Pku 3169 Layout
9. Pku 1986 Distance Queries
10. Pku 1276 Cash Machine
最新评论
1. re: AVL树的插入和删除操作
评论内容较长,点击标题查看
--jasonkent27@163.com