Gotta Write A Code
C++博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 33, comments - 33, trackbacks - 0
<
2012年3月
>
日
一
二
三
四
五
六
26
27
28
29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(5)
给我留言
查看公开留言
查看私人留言
随笔分类
CUDA(1)
Windows Programming(4)
算法题解(22)
随笔档案
2012年5月 (1)
2012年3月 (9)
2011年11月 (4)
2011年10月 (1)
2011年9月 (1)
2011年7月 (1)
2011年6月 (3)
2011年5月 (1)
2011年4月 (1)
2011年3月 (2)
2011年1月 (2)
2010年12月 (1)
2010年11月 (6)
搜索
最新评论
1. re: DX笔记[未登录]
OrOrOrz!!
--diryboy
2. re: 作品:动态语言AnyC 1.0
@so
其实里面的代码存在bug...
--qqdy
3. re: 作品:动态语言AnyC 1.0
游戏脚本高级编程的代码很好啊。
--so
4. re: 作品:动态语言AnyC 1.0
仰慕!!我刚开始学习编译呢
--coreBugZJ
5. re: AnyC:添加类型限制[未登录]
Orz!!
--diryboy
阅读排行榜
1. 逆序数及其求法(10745)
2. Poj 3310 判环+度(5966)
3. 水文一篇--基于CUDA的矩阵相乘(4602)
4. Poj2010 - 堆的应用(2468)
5. 水文:浅析PE File(2329)
评论排行榜
1. 作品:动态语言AnyC 1.0(4)
2. poj 3074(3)
3. ACM/ICPC杭州站 - hdu3680(3)
4. 水题四道 3-30(3)
5. POJ Challenge - 2011.04.10部分题解(3)
hdu 2222 多模式串匹配
AC自动机用于多模式串匹配
1
#include
<
stdio.h
>
2
#include
<
string
.h
>
3
#include
<
queue
>
4
using
namespace
std;
5
6
const
int
N
=
500005
;
7
8
struct
Trie
9
{
10
int
flag;
11
int
fail;
12
int
next[
26
];
13
14
void
Init()
15
{
16
flag
=
0
;
17
fail
=
-
1
;
18
for
(
int
i
=
0
; i
<
26
;
++
i)
19
next[i]
=
0
;
20
}
21
}
;
22
23
Trie trieTrees[N];
24
int
treeCnt;
25
char
strs[
1000005
];
26
int
n;
27
28
void
Insert(
char
*
_str)
29
{
30
int
rt
=
0
;
31
while
(
*
_str
!=
0
)
32
{
33
int
t
=
*
_str
-
'
a
'
;
34
if
(trieTrees[rt].next[t]
==
0
)
35
{
36
trieTrees[
++
treeCnt].Init();
37
trieTrees[rt].next[t]
=
treeCnt;
38
}
39
rt
=
trieTrees[rt].next[t];
40
++
_str;
41
}
42
trieTrees[rt].flag
++
;
43
}
44
45
46
void
BFS()
47
{
48
queue
<
int
>
Queue;
49
int
rt
=
0
;
50
int
p,q;
51
Queue.push(
0
);
52
while
(
!
Queue.empty())
53
{
54
int
now
=
Queue.front();
55
Queue.pop();
56
for
(
int
t
=
0
; t
<
26
;
++
t)
57
{
58
if
(trieTrees[now].next[t])
59
{
60
p
=
trieTrees[now].fail;
61
q
=
trieTrees[now].next[t];
62
while
(p
!=-
1
&&
trieTrees[p].next[t]
==
NULL)
63
p
=
trieTrees[p].fail;
64
if
(p
==
-
1
)
65
trieTrees[q].fail
=
0
;
66
else
67
trieTrees[q].fail
=
trieTrees[p].next[t];
68
Queue.push(q);
69
}
70
}
71
}
72
}
73
74
int
Match(
char
*
_str)
75
{
76
int
ret
=
0
;
77
int
rt
=
0
;
78
int
t,p;
79
while
(
*
_str)
80
{
81
t
=
*
_str
-
'
a
'
;
82
if
(trieTrees[rt].next[t])
83
rt
=
trieTrees[rt].next[t];
84
else
85
{
86
p
=
trieTrees[rt].fail;
87
while
(p
!=
-
1
&&
(
!
trieTrees[p].next[t]))
88
p
=
trieTrees[p].fail;
89
if
(p
==
-
1
)
90
rt
=
0
;
91
else
92
rt
=
trieTrees[p].next[t];
93
}
94
p
=
rt;
95
while
(p
!=
0
&&
trieTrees[p].flag)
96
{
97
if
(trieTrees[p].flag)
98
{
99
ret
+=
trieTrees[p].flag;
100
trieTrees[p].flag
=
0
;
101
}
102
p
=
trieTrees[p].fail;
103
}
104
++
_str;
105
}
106
return
ret;
107
}
108
109
void
Test()
110
{
111
scanf(
"
%d
"
,
&
n);
112
treeCnt
=
0
;
113
trieTrees[
0
].Init();
114
for
(
int
i
=
0
; i
<
n;
++
i)
115
{
116
while
(gets(strs),strcmp(strs,
""
)
==
0
);
117
Insert(strs);
118
}
119
BFS();
120
gets(strs);
121
int
ret
=
Match(strs);
122
printf(
"
%d\n
"
,ret);
123
}
124
125
int
main()
126
{
127
//
freopen("data.txt","r",stdin);
128
int
testcase;
129
scanf(
"
%d
"
,
&
testcase);
130
for
(
int
i
=
0
; i
<
testcase;
++
i)
131
Test();
132
return
0
;
133
}
posted on 2012-03-29 18:15
bennycen
阅读(1252)
评论(0)
编辑
收藏
引用
所属分类:
算法题解
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
hdu 2087 hud 1686
hdu 2896 多模式串匹配2
hdu 2222 多模式串匹配
水题两道
zoj 3542
poj 3074
逆序数及其求法
Poj 3310 判环+度
Poj 3104 二分答案
Poj1111 水题
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理