forked from EndlessCheng/codeforces-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrie.go
333 lines (307 loc) · 9.06 KB
/
trie.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
/* 前缀树/字典树/单词查找树
另类解读:如果将字符串长度视作定值的话,trie 树是一种 O(n) 排序,O(1) 查询的数据结构
https://oi-wiki.org/string/trie/
https://www.quora.com/q/threadsiiithyderabad/Tutorial-on-Trie-and-example-problems
https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/TrieST.java.html
https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/TrieSET.java.html
https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/TST.java.html
注:由于用的是指针写法,必要时禁止 GC,能加速不少
func init() { debug.SetGCPercent(-1) }
模板题 LC208 https://leetcode-cn.com/problems/implement-trie-prefix-tree/
前缀和后缀搜索 周赛62D/LC745 https://leetcode-cn.com/problems/prefix-and-suffix-search/
回文对(配合 Manacher 可以做到线性复杂度)LC336 https://leetcode-cn.com/problems/palindrome-pairs/
与 DP 结合 https://leetcode-cn.com/problems/re-space-lcci/
与贪心堆结合 https://codeforces.com/problemset/problem/965/E
todo https://codeforces.com/contest/455/problem/B
*/
type trieNode struct {
son [26]*trieNode
val int // 可以是个 []int,此时 cnt == len(val)
cnt int
// AC 自动机:当 o.son[i] 不能匹配文本串 text 中的某个字符时,o.fail 即为下一个应该查找的结点
fail *trieNode
}
func (o *trieNode) empty() bool {
for _, son := range o.son {
if son != nil {
return false
}
}
return true
}
type trie struct{ root *trieNode }
func newTrie() *trie {
// init with a root (empty string)
return &trie{&trieNode{}}
}
func (trie) ord(c byte) byte { return c - 'a' }
func (trie) chr(v byte) byte { return v + 'a' }
// 插入字符串 s,附带值 val,返回插入后字符串末尾对应的节点
func (t *trie) put(s []byte, val int) *trieNode {
o := t.root
for _, b := range s {
b = t.ord(b)
if o.son[b] == nil {
o.son[b] = &trieNode{}
}
o = o.son[b]
//o.cnt++ // 统计子树字符串(前缀)个数的写法
//o.val = val // 更新 s 的所有前缀的值
}
o.cnt++
o.val = val
return o
}
// 查找字符串 s
func (t *trie) find(s []byte) *trieNode {
o := t.root
for _, b := range s {
o = o.son[t.ord(b)]
// 未找到 s,且 s 不是任何字符串的前缀
if o == nil {
return nil
}
}
// 未找到 s,但是 s 是某个字符串的前缀
if o.cnt == 0 {
return nil
}
return o
}
// 删除字符串 s,返回字符串末尾对应的节点
// LC1804 https://leetcode-cn.com/problems/implement-trie-ii-prefix-tree/
func (t *trie) delete(s []byte) *trieNode {
fa := make([]*trieNode, len(s))
o := t.root
for i, b := range s {
fa[i] = o
o = o.son[t.ord(b)]
if o == nil {
return nil
}
//o.cnt-- // 对应 put 的写法
}
o.cnt--
if o.cnt == 0 {
for i := len(s) - 1; i >= 0; i-- {
f := fa[i]
f.son[t.ord(s[i])] = nil
if !f.empty() {
break
}
}
}
return o
}
// 求小于 s 的字符串个数
// 此时 o.cnt 保存子树字符串个数
func (t *trie) rank(s []byte) (k int) {
o := t.root
for _, b := range s {
b = t.ord(b)
for _, son := range o.son[:b] {
if son != nil {
k += son.cnt
}
}
o = o.son[b]
if o == nil {
return
}
}
//k += o.cnt // 这样写就是小于或等于 s 的字符串个数
return
}
// 求第 k 小(k 从 0 开始,相当于有 k 个字符串小于返回的字符串 s)
// 此时 o.cnt 保存子树字符串个数
func (t *trie) kth(k int) (s []byte) {
o := t.root
outer:
for {
for i, son := range o.son[:] {
if son != nil {
if k < son.cnt {
o = son
s = append(s, t.chr(byte(i)))
continue outer
}
k -= son.cnt
}
}
return
}
}
// 结合 rank 和 kth,可以求出一个字符串的前驱和后继
// 见 bst.go 中的 prev 和 next
// 返回字符串 s 在 trie 中的前缀个数
// https://www.acwing.com/problem/content/144/
// https://codeforces.com/gym/101628/problem/K
func (t *trie) countPrefixOfString(s []byte) (cnt int) {
o := t.root
for _, b := range s {
o = o.son[t.ord(b)]
if o == nil {
return
}
cnt += o.cnt
}
return
}
// 返回 trie 中前缀为 p 的字符串个数
// 此时 o.cnt 保存子树字符串个数
// https://codeforces.com/gym/101628/problem/K
// LC1804 https://leetcode-cn.com/problems/implement-trie-ii-prefix-tree/
func (t *trie) countStringHasPrefix(p []byte) int {
o := t.root
for _, b := range p {
o = o.son[t.ord(b)]
if o == nil {
return 0
}
}
return o.cnt
}
// s 的本质不同子串数量 O(n^2)
// 做法是插入每个后缀,统计节点数。但题目往往会带上额外的条件
// https://codeforces.com/problemset/problem/271/D
// 注:这题还可以用后缀数组+前缀和二分来做到 O(nlogn)
func (t *trie) countDistinctSubstring(s []byte) (cnt int) {
for i := range s {
o := t.root
for _, b := range s[i:] {
b = t.ord(b)
if o.son[b] == nil {
o.son[b] = &trieNode{}
cnt++
}
o = o.son[b]
}
}
return
}
// EXTRA: AC 自动机 Aho–Corasick algorithm / Deterministic Finite Automaton (DFA)
// https://en.wikipedia.org/wiki/Aho%E2%80%93Corasick_algorithm
// https://en.wikipedia.org/wiki/Deterministic_finite_automaton
// 基础实现 https://zhuanlan.zhihu.com/p/80325757
// 基础实现 https://www.cnblogs.com/nullzx/p/7499397.html
// 改进实现 https://oi-wiki.org/string/ac-automaton/
// 应用 https://cp-algorithms.com/string/aho_corasick.html
//
// 模板题
// LC1032 https://leetcode-cn.com/problems/stream-of-characters/
// https://www.luogu.com.cn/problem/P3808
// https://www.luogu.com.cn/problem/P3796
// todo https://www.luogu.com.cn/problem/P5357 二次加强版
//
// todo https://codeforces.com/problemset/problem/1437/G
// todo https://codeforces.com/problemset/problem/963/D
func (t *trie) buildDFA() {
q := []*trieNode{}
for _, son := range t.root.son[:] {
if son != nil {
son.fail = t.root
q = append(q, son)
}
}
for len(q) > 0 {
o := q[0]
q = q[1:]
if o.fail == nil {
o.fail = t.root
}
for i, son := range o.son[:] {
if son != nil {
son.fail = o.fail.son[i]
q = append(q, son)
} else {
o.son[i] = o.fail.son[i]
}
}
}
}
// 有多少个(编号)不同的模式串在文本串 text 里出现过
func (t *trie) sumCountAllPatterns(text []byte) (cnt int) {
o := t.root
for _, b := range text {
o = o.son[t.ord(b)]
if o == nil {
o = t.root
continue
}
for f := o; f != nil && f.val > 0; f = f.fail {
cnt += f.val
f.val = 0
}
}
return
}
// 返回所有模式串 patterns 的开头在文本串 text 的所有位置(未找到时对应数组为空)
// patterns 为模式串数组(无重复元素),为方便起见,patterns 从 1 开始
func (t *trie) acSearch(text []byte, patterns [][]byte) [][]int {
pos := make([][]int, len(patterns))
o := t.root
for i, b := range text {
o = o.son[t.ord(b)]
if o == nil {
o = t.root
continue
}
for f := o; f != nil; f = f.fail {
if pid := f.val; pid != 0 {
pos[pid] = append(pos[pid], i-len(patterns[pid])+1) // 也可以只记录 i,代表模式串末尾在文本的位置
}
}
}
return pos
}
//
// 持久化
// 注意为了拷贝一份 trieNode,这里的接收器不是指针
// https://oi-wiki.org/ds/persistent-trie/
// roots := make([]*trieNode, n+1)
// roots[0] = &trieNode{}
// roots[i+1] = roots[i].put(s)
func (o trieNode) put(s []byte) *trieNode {
if len(s) == 0 {
o.cnt++
return &o
}
b := s[0] - 'a' //
if o.son[b] == nil {
o.son[b] = &trieNode{}
}
o.son[b] = o.son[b].put(s[1:])
//o.maintain()
return &o
}
//
// Suffix automaton (SAM)
// https://en.wikipedia.org/wiki/Suffix_automaton
//《后缀自动机》,陈立杰
//《后缀自动机在字典树上的拓展》,刘研绎
//《后缀自动机及其应用》,张天扬
// todo https://www.bilibili.com/video/av756051240/
// todo https://baobaobear.github.io/post/20200220-sam/
// todo https://codeforces.com/blog/entry/20861
// TODO https://oi-wiki.org/string/sam/
// TODO https://cp-algorithms.com/string/suffix-automaton.html
// 后缀树简介 https://eternalalexander.github.io/2019/10/31/%E5%90%8E%E7%BC%80%E6%A0%91%E7%AE%80%E4%BB%8B/
// 工具:SAM Drawer https://yutong.site/sam/
// 模板题 https://www.luogu.com.cn/problem/P3804
// todo 后缀自动机一·基本概念 http://hihocoder.com/problemset/problem/1441
// 后缀自动机二·重复旋律5 http://hihocoder.com/problemset/problem/1445
// 后缀自动机三·重复旋律6 http://hihocoder.com/problemset/problem/1449
// 后缀自动机四·重复旋律7 http://hihocoder.com/problemset/problem/1457
// 后缀自动机五·重复旋律8 http://hihocoder.com/problemset/problem/1465
// 后缀自动机六·重复旋律9 http://hihocoder.com/problemset/problem/1466
// 第 k 小子串 https://www.luogu.com.cn/problem/P3975
// 后缀平衡树 https://www.luogu.com.cn/blog/CHiCO/CHiCO-Suffix-Balance-Tree
// 广义 SAM
// todo https://www.luogu.com.cn/problem/P6139
// todo https://codeforces.com/problemset/problem/1437/G
// 回文自动机 PAM
// todo https://baobaobear.github.io/post/20200416-pam/
// 《字符串算法选讲》-金策
// https://zhuanlan.zhihu.com/p/92874690
// todo https://www.luogu.com.cn/problem/P5496