forked from EndlessCheng/codeforces-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfenwick_tree.go
375 lines (342 loc) · 11.5 KB
/
fenwick_tree.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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package copypasta
import "sort"
/* 树状数组(Fenwick Tree),二叉索引树(Binary Index Tree, BIT)
https://en.wikipedia.org/wiki/Fenwick_tree
原论文 https://doi.org/10.1002/spe.4380240306
树状数组 tree 的基本用途是维护序列 a 的前缀和(tree 和 a 的下标都从 1 开始)
tree[i] = a[i-lowbit(i)+1] + ... + a[i]
看图 https://oi-wiki.org/ds/fenwick/
更新 a[i] 的时候,会首先更新最下面的包含 a[i] 的 tree[i],然后逐渐往上,更新包含这个元素的 tree[i]
这些节点(下标)都在 i 后面,所以更新的时候是从小往大算
计算某个前缀的时候,需要拆分区间,先把最右边的 arr[i-lowbit(i)+1] + ... + arr[i] 算出来,然后再去掉 i 最低位,算下一个区间
所以计算前缀是从大往小算
这里从小往大和从大往小说的是 i 的变化
可视化 https://visualgo.net/zh/fenwicktree
推荐阅读《算法竞赛进阶指南》0x42 节
https://oi-wiki.org/ds/bit/
todo 树状数组延申应用 https://www.luogu.com.cn/blog/kingxbz/shu-zhuang-shuo-zu-zong-ru-men-dao-ru-fen
浅谈树状数组的优化及扩展 https://www.luogu.com.cn/blog/countercurrent-time/qian-tan-shu-zhuang-shuo-zu-you-hua
浅谈树状数组套权值树 https://www.luogu.com.cn/blog/bfqaq/qian-tan-shu-zhuang-shuo-zu-quan-zhi-shu
https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/FenwickTree.java.html
模板题 https://www.luogu.com.cn/problem/P3374
逆序对 https://codeforces.com/edu/course/2/lesson/4/3/practice/contest/274545/problem/A https://leetcode-cn.com/problems/shu-zu-zhong-de-ni-xu-dui-lcof/
1e9 范围逆序对 https://codeforces.com/problemset/problem/540/E
静态区间种类 - 离线做法
https://www.luogu.com.cn/problem/P1972
https://atcoder.jp/contests/abc174/tasks/abc174_f
https://codeforces.com/problemset/problem/246/E
题目推荐 https://cp-algorithms.com/data_structures/fenwick.html#toc-tgt-12
树状数组的性质能使其支持动态 [1,x] 或 [x,n] 范围上的最值更新查询等操作
https://codeforces.com/problemset/problem/629/D
https://codeforces.com/problemset/problem/1635/F
好题 https://www.luogu.com.cn/problem/P2345 https://www.luogu.com.cn/problem/P5094
多变量统计 https://codeforces.com/problemset/problem/1194/E
T4 https://www.nowcoder.com/discuss/1022136
三元逆序对 https://codeforces.com/problemset/problem/61/E
最多交换 k 次相邻字母后,得到的最小字典序
- LC1505 https://leetcode.cn/problems/minimum-possible-integer-after-at-most-k-adjacent-swaps-on-digits/
整除对统计 https://codeforces.com/problemset/problem/301/D
区间统计技巧 https://codeforces.com/problemset/problem/369/E
区间包含计数 https://codeforces.com/problemset/problem/652/D
区间元素去重后的异或和 https://codeforces.com/problemset/problem/703/D 联系 https://www.luogu.com.cn/problem/P1972
建模 https://codeforces.com/problemset/problem/1660/F2
长为 k 的上升子序列个数 https://codeforces.com/problemset/problem/597/C
todo https://codeforces.com/problemset/problem/961/E(不止一种做法)
https://codeforces.com/gym/101649 I 题
http://poj.org/problem?id=2155
http://poj.org/problem?id=2886
*/
type fenwick struct {
tree []int64
}
func newFenwickTree(n int) fenwick {
return fenwick{make([]int64, n+1)}
}
// a[i] 增加 val
// 1<=i<=n
func (f fenwick) add(i int, val int64) {
for ; i < len(f.tree); i += i & -i {
f.tree[i] += val
}
}
// 求前缀和 a[1] + ... + a[i]
// 1<=i<=n
func (f fenwick) pre(i int) (res int64) {
for ; i > 0; i &= i - 1 {
res += f.tree[i]
}
return
}
// 求区间和 a[l] + ... + a[r]
// 1<=l<=r<=n
func (f fenwick) query(l, r int) int64 {
return f.pre(r) - f.pre(l-1)
}
//
// 差分版本
// 参考《算法竞赛进阶指南》《挑战程序设计竞赛》
// 利用差分数组,实现 O(log n) 的区间加、区间查询
// a[1] = diff[1]
// a[2] = diff[1] + diff[2]
// a[m] = diff[1] + ... + diff[m]
// 所以 a[1] + ... + a[m]
// = ∑(m-i+1)*diff[i]
// = (m+1)∑diff[i] - ∑i*diff[i]
// https://ac.nowcoder.com/acm/problem/50454
// https://codeforces.com/contest/1824/problem/D
// [0] 维护 ∑diff[i]
// [1] 维护 ∑i*diff[i]
// 为了更好地利用缓存,写成 [][2] 而不是 [2][]
type fenwickDiff [][2]int64
func newFenwickTreeDiff(n int) fenwickDiff {
return make([][2]int64, n+1)
}
func (t fenwickDiff) _add(i int, val int64) {
for iv := int64(i) * val; i < len(t); i += i & -i {
t[i][0] += val
t[i][1] += iv
}
}
// a[l] 到 a[r] 增加 val
// 1<=l<=r<=n
func (t fenwickDiff) add(l, r int, val int64) {
t._add(l, val)
t._add(r+1, -val)
}
// 求前缀和 a[1] + ... + a[i]
// 1<=i<=n
func (t fenwickDiff) pre(i0 int) int64 {
var s0, s1 int64
for i := i0; i > 0; i &= i - 1 {
s0 += t[i][0]
s1 += t[i][1]
}
return int64(i0+1)*s0 - s1
}
// 求区间和 a[l] + ... + a[r]
// 1<=l<=r<=n
func (t fenwickDiff) query(l, r int) int64 {
return t.pre(r) - t.pre(l-1)
}
//
func _(n int) {
tree := make([]int, n+1) // int64
add := func(i int, val int) {
for ; i < len(tree); i += i & -i {
tree[i] += val
}
}
sum := func(i int) (res int) {
for ; i > 0; i &= i - 1 {
res += tree[i]
}
return
}
query := func(l, r int) int { return sum(r) - sum(l-1) } // [l,r]
// 差分树状数组,可用于区间更新+单点查询 queryOne(i) = a[i] + sum(i) // a 从 1 开始
// r+1 即使超过 n 也没关系,因为不会用到
// 模板题 https://www.luogu.com.cn/problem/P3368
addRange := func(l, r int, val int) { add(l, val); add(r+1, -val) } // [l,r]
// 求权值树状数组第 k 小的数(k > 0)
// 这里 tree[i] 表示 i 的个数
// 返回最小的 x 满足 ∑i=[1..x] tree[i] >= k
// 思路类似倍增的查询,不断寻找 ∑<k 的数,最后 +1 就是答案
// https://oi-wiki.org/ds/fenwick/#tricks
//
// https://codeforces.com/blog/entry/61364
// https://codeforces.com/problemset/problem/1404/C
// todo https://codeforces.com/contest/992/problem/E
// https://atcoder.jp/contests/abc287/tasks/abc287_g
// 二分 https://www.luogu.com.cn/problem/P4137
// - 代码见下面的 rangeMex
kth := func(k int) (res int) {
const log = 17 // bits.Len(uint(n))
for b := 1 << (log - 1); b > 0; b >>= 1 {
if next := res | b; next < len(tree) && k > tree[next] {
k -= tree[next]
res = next
}
}
return res + 1
}
// 输出权值树状数组的 mex(这里的定义是第一个没出现的正数)
// 注意不能有重复元素
mex := func() (res int) {
const log = 17 // bits.Len(uint(n))
for b := 1 << (log - 1); b > 0; b >>= 1 {
if next := res | b; tree[next] == next {
res = next
}
}
res++ // mex
return
}
// 常数优化:O(n) 建树
// https://oi-wiki.org/ds/fenwick/#tricks
init := func(a []int) { // len(tree) = len(a) + 1
for i := 1; i < len(tree); i++ {
tree[i] += a[i-1]
if j := i + i&-i; j < len(tree) {
tree[j] += tree[i]
}
}
}
// 常数优化(不推荐。实测只快了几毫秒)
// https://www.luogu.com.cn/blog/countercurrent-time/qian-tan-shu-zhuang-shuo-zu-you-hua
query = func(l, r int) (s int) {
if l > r {
panic(9)
}
l--
for ; r > l; r &= r - 1 {
s += tree[r]
}
for ; l > r; l &= l - 1 {
s -= tree[l]
}
return
}
{
// 时间戳优化(通常用于多组数据+值域树状数组)https://oi-wiki.org/ds/fenwick/#%E6%97%B6%E9%97%B4%E6%88%B3%E4%BC%98%E5%8C%96
// https://codeforces.com/problemset/submission/1801/205042964
const mx int = 1e6
tree := [mx + 1]int{} // 默认都是 0
time := [mx + 1]int{}
curCase := 1 // 从 1 开始
upd := func(i int, v int) {
for ; i <= mx; i += i & -i {
if time[i] != curCase {
time[i] = curCase
tree[i] = 0 // reset
}
tree[i] += v
}
}
pre := func(i int) (res int) {
for ; i > 0; i &= i - 1 {
if time[i] == curCase {
res += tree[i]
} // 否则,相当于 res += 0
}
return
}
_, _ = upd, pre
}
// 求逆序对的方法之一
// 如果 a 范围较大则需要离散化(但这样还不如直接用归并排序)
// 归并做法见 misc.go 中的 mergeCount
// 扩展 https://codeforces.com/problemset/problem/362/C
// 环形最小逆序对 https://www.luogu.com.cn/problem/solution/P2995
// 扩展:某些位置上的数待定时的逆序对的期望值 https://codeforces.com/problemset/problem/1096/F
// https://codeforces.com/problemset/problem/1585/D
cntInversions := func(a []int) int64 {
n := len(a)
tree := make([]int, n+1)
add := func(i int) {
for ; i <= n; i += i & -i {
tree[i]++
}
}
sum := func(i int) (res int) {
for ; i > 0; i &= i - 1 {
res += tree[i]
}
return
}
invCnt := int64(0)
for i, v := range a {
// 由于 i 从 0 开始算,这里先 sum 后 add
invCnt += int64(i - sum(v))
add(v)
}
return invCnt
}
// 通过邻项交换,把数组 a 变成数组 b,需要的最小操作次数
// 如果无法做到,返回 -1
// https://atcoder.jp/contests/arc120/tasks/arc120_c
// LC1850 https://leetcode.cn/problems/minimum-adjacent-swaps-to-reach-the-kth-smallest-number/
minSwap := func(a, b []int) (res int64) {
tree := make([]int, len(a)+1)
add := func(i int) {
for i++; i < len(tree); i += i & -i {
tree[i]++
}
}
sum := func(i int) (res int) {
for ; i > 0; i &= i - 1 {
res += tree[i]
}
return
}
pos := map[int][]int{}
for i, v := range a {
pos[v] = append(pos[v], i)
}
for i, v := range b {
p := pos[v]
if len(p) == 0 {
return -1
}
j := p[0]
pos[v] = p[1:]
res += int64(i - sum(j))
add(j)
}
return
}
_ = []interface{}{add, sum, query, addRange, kth, mex, init, cntInversions, minSwap}
}
// 给一个数组 a 和一些询问 qs,对每个询问计算 mex(a[l..r])
// a[i]>=0, 1<=l<=r<=n
// 遍历数组 a,记录 a[i] 最后一次出现的位置 lastPos 以及上一个 a[i] 的位置 prevPos
// 建立一个权值树状数组,维护 lastPos[v] 的前缀最小值
// 树状数组维护前缀最小值的条件是每次修改只能往小改,那么从后往前做就好了
// 将询问离线:按照右端点排序(或分组),计算 mex。原理见代码中 query 的注释
// https://www.luogu.com.cn/problem/P4137
// LC2003 https://leetcode-cn.com/problems/smallest-missing-genetic-value-in-each-subtree/
// - 需要将 a 转换成 DFS 序且从 0 开始,同时最终答案需要 +1
func rangeMex(a []int, qs []struct{ l, r, i int }, min func(int, int) int) []int {
const mx int = 1e5 + 2
// 权值树状数组
// 这里 tree[v] = min{pos[v-lowbit(v)+1], ..., pos[v]}
tree := [mx]int{}
for i := range tree {
tree[i] = 1e9
}
// 由于树状数组的下标需要为正,将所有 v 偏移 +1
update := func(v, pos int) {
for v++; v < mx; v += v & -v {
tree[v] = min(tree[v], pos)
}
}
// 根据上面的定义,对于第一个满足 if 条件的 next,有 min{pos[1], ..., pos[next]} >= l,即 mex >= next(这里的 1~next 是偏移 +1 后的)
// 后面满足 if 的以此类推
query := func(l int) (res int) {
const log = 17 // bits.Len(uint(mx))
for b := 1 << (log - 1); b > 0; b >>= 1 {
if next := res | b; next < mx && tree[next] >= l {
res = next
}
}
return
}
n, m := len(a), len(qs)
prevPos := make([]int, n)
lastPos := make([]int, mx)
for i, v := range a {
prevPos[i] = lastPos[v]
lastPos[v] = i + 1
}
for v, pos := range lastPos {
update(v, pos)
}
ans := make([]int, m)
sort.Slice(qs, func(i, j int) bool { return qs[i].r > qs[j].r })
for i, qi := n-1, 0; i >= 0; i-- {
for ; qi < m && qs[qi].r == i+1; qi++ {
ans[qs[qi].i] = query(qs[qi].l)
}
update(a[i], prevPos[i])
}
return ans
}