forked from EndlessCheng/codeforces-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acam.go
333 lines (300 loc) · 11.8 KB
/
acam.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
package copypasta
import (
. "fmt"
"strings"
)
/* AC 自动机(多模式匹配) Aho–Corasick algorithm (ACAM) / Deterministic Finite Automaton (DFA)
可视化 https://wiomoc.github.io/aho-corasick-viz/ 蓝色是 fail 指针,绿色是 last 指针
https://brunorb.com/aho-corasick/
https://daniel.lawrence.lu/blog/y2014m03d25/
如果我们既知道前缀信息(trie),又知道后缀信息(fail),就可以做字符串匹配:
前缀的后缀就是子串,只要遍历到所有前缀,对每个前缀做「后缀匹配」,就完成了字符串匹配(统计子串出现次数)
推荐用 https://codeforces.com/problemset/problem/547/E 来理解
举例:对于 "ababab" 来说,把它的每个前缀节点都 +1,站在 fail 树的视角上看,相当于把(其中)一条全为 "a" 和一条全为 "b" 的树链上的【部分】节点 +1
统计 "ab" / "ba" 这些子串的出现次数,即「后缀匹配」的成功次数,只需要计算 "ab" / "ba" 在 fail 树上的子树点权和即可
这可以用树状数组维护
https://en.wikipedia.org/wiki/Aho%E2%80%93Corasick_algorithm
https://en.wikipedia.org/wiki/Deterministic_finite_automaton
https://oi-wiki.org/string/ac-automaton/
应用 https://cp-algorithms.com/string/aho_corasick.html
https://ac.nowcoder.com/study/live/738/4/1
https://zhuanlan.zhihu.com/p/533603249
https://www.cnblogs.com/sclbgw7/p/9260756.html
todo 题单 https://www.luogu.com.cn/training/9372
https://www.luogu.com.cn/training/53971
https://www.cnblogs.com/alex-wei/p/Common_String_Theory_Theory_automaton_related.html
https://ac.nowcoder.com/acm/contest/29086
Trie 图:合并 trie 树和 fail 树(求联集)
从 root 出发 DFS,跳过 end=true 的节点,如果找到环,那么就可以构造一个无限长的文本串,它不包含任何模式串
注意 buildFail 的时候要加上 o.end = o.end || f.end 这句话,
因为一个模式串可能包含其它模式串,比如有 "abcd" 和 "bc" 这两个模式串,要在 "abc" 的 "c" 上也标记 end=true
判环可以用 DFS + 三色标记法,见 graph.go 的「有向图的环」
[POI2000] 病毒 https://www.luogu.com.cn/problem/P2444
TIPS: 动态增删模式串,同时询问「查询所有模式串在文本串中的出现次数」,可以改为离线(先把所有模式串加入 AC 自动机)
当对一个节点增删 end 标记时,如果只对这一个节点修改,那么询问就需要遍历整个 fail 链,太慢了
换个思路:改为 end 标记会对它的 fail 子树全部 +1/-1,这样就可以在遍历文本串时单点询问了
这可以用【DFS 序 + 差分树状数组】实现,见 graph_tree.go 和 fenwick_tree.go
https://codeforces.com/problemset/problem/163/E 2800
- 弱化版 https://ac.nowcoder.com/acm/problem/14612
- 牛客这题也可以用分治 https://ac.nowcoder.com/acm/contest/view-submission?submissionId=53548785
https://www.luogu.com.cn/problem/P3808
https://www.luogu.com.cn/problem/P3796
每个模式串在文本串中的出现次数 https://www.luogu.com.cn/problem/P5357 双倍经验 https://www.luogu.com.cn/problem/P3966
LC1032 https://leetcode.cn/problems/stream-of-characters/
todo LC1408 模式串之间的包含关系 https://leetcode.cn/problems/string-matching-in-an-array/
- https://leetcode.cn/problems/string-matching-in-an-array/submissions/484231678/
结合线段树优化 DP https://www.luogu.com.cn/problem/P7456
结合数位 DP https://ac.nowcoder.com/acm/problem/20366
- dfs 传参用 node *acamNode,记忆化的时候用 node.nodeID 代替,这样可以用数组而不是 map 记忆化,效率提高 10 倍
《AC 自动机 fail 树 DFS 序上建可持久化线段树》https://codeforces.com/problemset/problem/547/E 2800
- 其实不需要可持久化线段树,差分树状数组就行:s[i] 的每个前缀都可以在它的 fail 子树中的所有模式串内
- 包含 s[k] 的状态节点一定位于 s[k] 末尾节点的子树内
- 注:后缀自动机 next 指针 DAG 图上跑 SG 函数 https://www.jisuanke.com/contest/1209/problems A String Game https://www.jisuanke.com/problem/A1623
- 注:楼教主新男人八题 https://www.zhihu.com/question/269890748
- 注:https://codeforces.com/blog/entry/68292?#comment-526002
todo 最长前缀查询 https://www.luogu.com.cn/problem/P5231
NOI11 阿狸的打字机 https://www.luogu.com.cn/problem/P2414
https://www.luogu.com.cn/problem/P3121
https://www.luogu.com.cn/problem/P3041
https://www.luogu.com.cn/problem/P4052
https://www.luogu.com.cn/problem/P3311
https://www.luogu.com.cn/problem/P2292
https://www.luogu.com.cn/problem/P5840
https://codeforces.com/problemset/problem/710/F 2400
https://codeforces.com/problemset/problem/1202/E 2400
https://codeforces.com/problemset/problem/696/D 2500
https://codeforces.com/problemset/problem/963/D 2500
https://codeforces.com/problemset/problem/1437/G 2600
https://codeforces.com/problemset/problem/1207/G 2700
https://codeforces.com/problemset/problem/163/E 2800
https://codeforces.com/problemset/problem/1801/G 3400
https://codeforces.com/gym/102511/problem/G ICPC Final 2019 G
LC30 串联所有单词的子串 https://leetcode-cn.com/problems/substring-with-concatenation-of-all-words/
? LC616 给字符串添加加粗标签 https://leetcode-cn.com/problems/add-bold-tag-in-string/
LC2781 最长合法子字符串的长度 https://leetcode.cn/problems/length-of-the-longest-valid-substring/solution/aczi-dong-ji-onjie-fa-wu-shi-chang-du-10-47dy/
https://www.acwing.com/solution/content/25473/
https://www.acwing.com/solution/content/54646/
*/
// 如果 MLE 请把指针替换成 uint32,代码见 https://codeforces.com/contest/163/submission/233981400
const acamNodeSize = 26
type acamNode struct {
son [acamNodeSize]*acamNode
cnt int //(子树中)完整字符串的个数
idx int // 或者替换成 end bool
// 当 o.son[i] 不能匹配文本串 text 中的某个字符时,o.fail.son[i] 即为下一个待匹配节点
fail *acamNode
//last *acamNode // 后缀链接(suffix link),用来快速跳到一定是模式串末尾的位置(算法题一般不用)
nodeID int
}
type gInfo struct{ l, r int } // [l,r]
type acam struct {
patterns []string // 额外保存,方便 debug
root *acamNode
nodeCnt int
g [][]int // fail 树
gInfo []gInfo
dfn int
inDeg map[*acamNode]int // 求拓扑序时有用
}
func newACAM(patterns []string) *acam {
t := &acam{
patterns: patterns,
root: &acamNode{},
nodeCnt: 1,
inDeg: map[*acamNode]int{},
}
for i, s := range patterns {
t.put(s, i+1) // 注意这里 +1 了
}
t.buildFail()
return t
}
func (acam) ord(c rune) rune { return c - 'a' }
// 插入字符串 s,附带值 idx
func (t *acam) put(s string, idx int) *acamNode {
o := t.root
for _, b := range s {
b = t.ord(b)
if o.son[b] == nil {
newNode := &acamNode{nodeID: t.nodeCnt}
o.son[b] = newNode
//t.inDeg[newNode] = 0
t.nodeCnt++
}
o = o.son[b]
//o.cnt++ // 写法一:统计 o 对应的字符串是多少个完整字符串的前缀
}
o.cnt++ // 写法二:统计 o 上有多少个完整字符串
o.idx = idx
//o.end = true
return o // o.nodeID
}
func (t *acam) buildFail() {
t.g = make([][]int, t.nodeCnt) //
t.root.fail = t.root
//t.root.last = t.root
q := make([]*acamNode, 0, t.nodeCnt)
for i, son := range t.root.son[:] {
if son == nil {
t.root.son[i] = t.root
} else {
son.fail = t.root // 第一层的失配指针,都指向 ∅
//son.last = t.root
t.g[son.fail.nodeID] = append(t.g[son.fail.nodeID], son.nodeID)
q = append(q, son)
}
}
// BFS
for len(q) > 0 {
o := q[0]
q = q[1:]
f := o.fail
//o.end = o.end || f.end // o 是否为某个模式串的末尾
for i, son := range o.son[:] {
if son == nil {
o.son[i] = f.son[i] // 虚拟子节点 o.son[i],和 o.fail.son[i] 是同一个
continue
}
son.fail = f.son[i] // 下一个匹配位置
t.g[son.fail.nodeID] = append(t.g[son.fail.nodeID], son.nodeID)
//t.inDeg[son.fail]++
//if son.fail.cnt > 0 {
// son.last = son.fail
//} else {
// son.last = son.fail.last
//}
q = append(q, son)
}
}
}
func (t *acam) _buildDFN(v int) {
t.dfn++
t.gInfo[v].l = t.dfn
for _, w := range t.g[v] {
t._buildDFN(w)
}
t.gInfo[v].r = t.dfn
}
func (t *acam) buildDFN() {
t.gInfo = make([]gInfo, len(t.g))
t._buildDFN(t.root.nodeID)
// 利用差分树状数组可以实现:添加删除模式串/查询有多少模式串在文本串中出现过
// 见 https://codeforces.com/contest/163/submission/233925639
//
//bit := make(fenwick, t.dfn+2)
//
//p := t.gi[nodeIDs[i]]
//bit.update(p.dfn, p.dfn+p.size, 1) // 左闭右开 1 是添加,-1 是删除
//
//cnt := 0
//o := t.root
//for _, b := range text {
// o = o.son[t.ord(b)]
// cnt += bit.pre(t.gi[o.nodeID].dfn)
//}
}
// 有多少个下标不同的模式串在文本串 text 里出现过
// https://www.luogu.com.cn/problem/P3808
// https://www.luogu.com.cn/record/136447022
func (t *acam) sumCountAllPatterns(text string) (cnt int) {
o := t.root
for _, b := range text {
o = o.son[t.ord(b)]
// 遍历 fail 链(fail 树上的从 o 到 root 的路径)
for f := o; f != t.root && f.cnt != -1; f = f.fail { // f = f.last
cnt += f.cnt
f.cnt = -1 // 访问标记
}
}
return
}
// 返回一个 pos 列表,其中 pos[i] 表示 patterns[i] 的【首字母】在文本串 text 的所有位置(未找到时为空)
// patterns 为模式串列表(互不相同),下标从 1 开始
// 如果只求个数,更快的做法见后面
func (t *acam) acSearch(text string) [][]int {
pos := make([][]int, len(t.patterns))
o := t.root
for i, b := range text {
o = o.son[t.ord(b)]
// 注:如果可以进入 for 循环,表示当前匹配到了一个(尽可能长的)模式串,其余更短的要在 fail 链上找
// 遍历 fail 链(fail 树上的从 o 到 root 的路径)
for f := o; f != t.root; f = f.fail { // f = f.last
if f.idx == 0 {
continue
}
pIdx := f.idx - 1
// 如果改为记录 i,则表示 patterns[pIdx] 的【末尾字母】在 text 的位置
pos[pIdx] = append(pos[pIdx], i-len(t.patterns[pIdx])+1)
}
}
return pos
}
// 返回一个 cnt 列表,其中 cnt[i] 表示 patterns[i] 的在文本串 text 的出现次数(未找到时为 0)
// patterns 为模式串列表(互不相同),下标从 1 开始
// https://www.luogu.com.cn/problem/P5357 https://www.luogu.com.cn/problem/P3966
// https://www.luogu.com.cn/record/136429060
func (t *acam) acSearchCount(text string) []int {
// 【注意】调用前把 put 中的 o.cnt++ 去掉!
o := t.root
for _, b := range text {
o = o.son[t.ord(b)]
// 本来应该像上面那样一路找到 t.root,但这样太慢了
// 可以先打个标记,然后在 fail 树上跑拓扑序一起统计
o.cnt++
}
cnt := make([]int, len(t.patterns))
deg := t.inDeg
q := make([]*acamNode, 0, len(deg)+1)
for v, d := range deg {
if d == 0 {
q = append(q, v)
}
}
for len(q) > 0 {
v := q[0]
q = q[1:]
// 如果 v 不是某个模式串的末尾字母,则 v.idx = 0
if v.idx > 0 {
cnt[v.idx-1] = v.cnt
}
w := v.fail // 注意不能用 last,会漏掉中间打上的 cnt 标记
w.cnt += v.cnt
if deg[w]--; deg[w] == 0 {
q = append(q, w)
}
}
return cnt
}
func (t *acam) debug(text string) {
Println("text:", text)
Println("patterns (下面简称 p)")
for i, p := range t.patterns {
Printf("%d: %s\n", i, p)
}
o := t.root
for i, b := range text {
o = o.son[t.ord(b)]
cnt := 0
for f := o; f != t.root; f = f.fail {
if f.idx > 0 {
cnt++
}
}
if cnt == 0 {
continue
}
Println()
Println(text)
Print(strings.Repeat(" ", i))
Printf("^ i=%d\n", i)
Println("找到", cnt, "个模式串")
for f := o; f != t.root; f = f.fail {
if f.idx == 0 {
//Println("skip")
continue
}
pIdx := f.idx - 1
Printf("p[%d]=%s\n", pIdx, t.patterns[pIdx])
}
}
}