-
Notifications
You must be signed in to change notification settings - Fork 577
/
multiset.go
209 lines (185 loc) · 4.34 KB
/
multiset.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
package multiset
import (
"cmp"
"time"
)
/*
对标 C++ 的 multiset
额外维护每个 key 的出现次数
出现次数为 0 的 key 自动删除
*/
type node[K comparable] struct {
son [2]*node[K]
priority uint
key K
keyCnt int
subSize int
}
func (o *node[K]) size() int {
if o != nil {
return o.subSize
}
return 0
}
func (o *node[K]) maintain() {
o.subSize = o.keyCnt + o.son[0].size() + o.son[1].size()
}
func (o *node[K]) rotate(d int) *node[K] {
x := o.son[d^1]
o.son[d^1] = x.son[d]
x.son[d] = o
o.maintain()
x.maintain()
return x
}
type treap[K comparable] struct {
rd uint
root *node[K]
comparator func(a, b K) int
}
func (t *treap[K]) fastRand() uint {
t.rd ^= t.rd << 13
t.rd ^= t.rd >> 17
t.rd ^= t.rd << 5
return t.rd
}
func (t *treap[K]) size() int { return t.root.size() }
func (t *treap[K]) empty() bool { return t.size() == 0 }
func (t *treap[K]) _put(o *node[K], key K) *node[K] {
if o == nil {
o = &node[K]{priority: t.fastRand(), key: key, keyCnt: 1}
} else {
c := t.comparator(key, o.key)
if c == 0 { // 相等
o.keyCnt++
} else {
// < 0 去左边,> 0 去右边
d := 0
if c > 0 {
d = 1
}
o.son[d] = t._put(o.son[d], key)
if o.son[d].priority > o.priority {
o = o.rotate(d ^ 1)
}
}
}
o.maintain()
return o
}
func (t *treap[K]) put(key K) { t.root = t._put(t.root, key) }
func (t *treap[K]) _delete(o *node[K], key K) *node[K] {
if o == nil {
return nil
}
if c := t.comparator(key, o.key); c != 0 {
// < 0 去左边,> 0 去右边
d := 0
if c > 0 {
d = 1
}
o.son[d] = t._delete(o.son[d], key)
} else { // 相等
if o.keyCnt > 1 {
o.keyCnt--
} else { // 删除
if o.son[1] == nil {
return o.son[0]
}
if o.son[0] == nil {
return o.son[1]
}
d := 0
if o.son[0].priority > o.son[1].priority {
d = 1
}
o = o.rotate(d)
o.son[d] = t._delete(o.son[d], key)
}
}
o.maintain()
return o
}
func (t *treap[K]) delete(key K) { t.root = t._delete(t.root, key) }
func (t *treap[K]) min() *node[K] { return t.kth(0) }
func (t *treap[K]) max() *node[K] { return t.kth(t.size() - 1) }
// 把 treap 当作一个有序数组,返回第一个 >= key 的数的下标,若不存在,返回 size()
// 等价于 < key 的元素个数
func (t *treap[K]) lowerBoundIndex(key K) (kth int) {
for o := t.root; o != nil; {
c := t.comparator(key, o.key)
if c < 0 {
o = o.son[0]
} else if c > 0 {
kth += o.son[0].size() + o.keyCnt
o = o.son[1]
} else { // 相等
kth += o.son[0].size()
break
}
}
return
}
// 把 treap 当作一个有序数组,返回第一个 > key 的数的下标,若不存在,返回 size()
// 等价于 <= key 的元素个数
func (t *treap[K]) upperBoundIndex(key K) (kth int) {
for o := t.root; o != nil; {
c := t.comparator(key, o.key)
if c < 0 {
o = o.son[0]
} else if c > 0 {
kth += o.son[0].size() + o.keyCnt
o = o.son[1]
} else { // 相等
kth += o.son[0].size() + o.keyCnt
break
}
}
return
}
// 把 treap 当作一个有序数组,返回下标为 k 的 node(k 从 0 开始)
// 也就是第 k+1 小:node.key 是最小的满足「有至少 k+1 个元素 <= node.key」的元素
func (t *treap[K]) kth(k int) (o *node[K]) {
if k < 0 || k >= t.root.size() {
return // NOTE: check nil
}
for o = t.root; o != nil; {
leftSize := o.son[0].size()
if k < leftSize {
o = o.son[0]
} else {
k -= leftSize + o.keyCnt
if k < 0 {
break
}
o = o.son[1]
}
}
return // NOTE: check nil
}
// 求 v 的前驱(小于 key 的最大元素)
func (t *treap[K]) prev(key K) *node[K] { return t.kth(t.lowerBoundIndex(key) - 1) }
// 求 v 的后继(大于 key 的最小元素)
func (t *treap[K]) next(key K) *node[K] { return t.kth(t.upperBoundIndex(key)) }
// <= key 可以用 t.kth(t.upperBoundIndex(key)-1)
// >= key 可以用 t.kth(t.lowerBoundIndex(key))
func (t *treap[K]) find(key K) *node[K] {
o := t.kth(t.lowerBoundIndex(key))
if o == nil || o.key != key {
return nil
}
return o
}
func newTreap[K cmp.Ordered]() *treap[K] {
return &treap[K]{
rd: uint(time.Now().UnixNano())/2 + 1,
comparator: cmp.Compare[K],
}
}
func newTreapWith[K comparable](comp func(a, b K) int) *treap[K] {
return &treap[K]{
rd: uint(time.Now().UnixNano())/2 + 1,
comparator: comp,
}
}
// 具体用法见本目录下的 test.go 文件