-
Notifications
You must be signed in to change notification settings - Fork 575
/
segment_tree01.go
217 lines (198 loc) · 4.74 KB
/
segment_tree01.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
package copypasta
import "math/bits"
// 0-1 线段树
// 支持区间翻转比特、单比特加减等
// 要点:维护对偶问题的答案
// 某些情况下可作为 Bitset 的替代品
// LC2569 https://leetcode.cn/problems/handling-sum-queries-after-update/
// https://www.luogu.com.cn/problem/P2572
// https://codeforces.com/contest/1705/problem/E
// https://codeforces.com/problemset/problem/877/E
// https://codeforces.com/problemset/problem/145/E 2400
type seg01 []struct {
l, r int
ones int // EXTRA: 1 的个数
// -1: [l,r] 内全为 0
// 1: [l,r] 内全为 1
// 0: [l,r] 内有 0 有 1
state int8
flip bool // lazy tag
// 还可以维护:
// 连续 0 的最长长度(前缀、后缀、区间)
// 连续 1 的最长长度(前缀、后缀、区间)
// 见 https://www.luogu.com.cn/problem/P2572
// 代码 https://www.luogu.com.cn/record/138274036
}
func (t seg01) maintain(o int) {
lo, ro := &t[o<<1], &t[o<<1|1]
if lo.state < 0 && ro.state < 0 {
t[o].state = -1
} else if lo.state > 0 && ro.state > 0 {
t[o].state = 1
} else {
t[o].state = 0
}
t[o].ones = lo.ones + ro.ones
}
func (t seg01) doFlip(O int) {
o := &t[O]
o.state = -o.state
o.ones = o.r - o.l + 1 - o.ones
o.flip = !o.flip
}
func (t seg01) spread(o int) {
if t[o].flip {
t.doFlip(o << 1)
t.doFlip(o<<1 | 1)
t[o].flip = false
}
}
// 见 buildWithBinary
func newSeg01(a string) seg01 {
n := len(a)
t := make(seg01, 2<<bits.Len(uint(n-1)))
t.buildWithBinary(a, 1, 1, n)
return t
}
// a 从左到右是二进制从低到高
// a 的下标从 0 开始(虽然整个 0-1 线段树都是从 1 开始的)
func (t seg01) buildWithBinary(a string, o, l, r int) {
t[o].l, t[o].r = l, r
if l == r {
if a[l-1] == '0' {
t[o].state = -1
} else { // '1'
t[o].state = 1
t[o].ones = 1
}
return
}
m := (l + r) >> 1
t.buildWithBinary(a, o<<1, l, m)
t.buildWithBinary(a, o<<1|1, m+1, r)
t.maintain(o)
}
func (t seg01) build(o, l, r int) {
t[o].l, t[o].r, t[o].state = l, r, -1 // 初始全为 0,故设置为 -1
if l == r {
return
}
m := (l + r) >> 1
t.build(o<<1, l, m)
t.build(o<<1|1, m+1, r)
}
// 将 [l,r] 内的 0 置为 1,1 置为 0
// o=1, 1<=l<=r<=n
func (t seg01) flip(o, l, r int) {
if l <= t[o].l && t[o].r <= r {
t.doFlip(o)
return
}
t.spread(o)
m := (t[o].l + t[o].r) >> 1
if l <= m {
t.flip(o<<1, l, r)
}
if m < r {
t.flip(o<<1|1, l, r)
}
t.maintain(o)
}
// 返回下标 >= l 的第一个 0 的位置,不存在时返回 -1
// o=1, l>=1
func (t seg01) next0(o, l int) int {
if t[o].l == t[o].r {
if t[o].state < 0 {
return t[o].l
}
return -1
}
t.spread(o)
m := (t[o].l + t[o].r) >> 1
if l <= m && t[o<<1].state <= 0 {
if p := t.next0(o<<1, l); p > 0 {
return p
}
}
return t.next0(o<<1|1, l)
}
// 返回下标 >= l 的第一个 1 的位置,不存在时返回 -1
// o=1, l>=1
func (t seg01) next1(o, l int) int {
if t[o].l == t[o].r {
if t[o].state > 0 {
return t[o].l
}
return -1
}
t.spread(o)
m := (t[o].l + t[o].r) >> 1
if l <= m && t[o<<1].state >= 0 {
if p := t.next1(o<<1, l); p > 0 {
return p
}
}
return t.next1(o<<1|1, l)
}
// 返回第 k 个 1 的位置
// 必须满足 k <= t[1].ones
// o=1, k>=1
func (t seg01) kth1(o, k int) int {
if t[o].l == t[o].r {
return t[o].l
}
t.spread(o)
if k <= t[o<<1].ones {
return t.kth1(o<<1, k)
}
return t.kth1(o<<1|1, k-t[o<<1].ones)
}
// 返回最后一个 1 的位置(类似 bits.Len)
// 如果题目不保证此时一定有 1,则要特判下:如果 t[1].state < 0 则没有 1
// o=1
func (t seg01) lastIndex1(o int) int {
if t[o].l == t[o].r {
return t[o].l
}
t.spread(o)
if t[o<<1|1].state >= 0 {
return t.lastIndex1(o<<1 | 1)
}
return t.lastIndex1(o << 1)
}
// += 1<<i,模拟进位
// i>=1
func (t seg01) add(i int) { t.flip(1, i, t.next0(1, i)) }
// -= 1<<i,模拟借位
// i>=1
func (t seg01) sub(i int) { t.flip(1, i, t.next1(1, i)) }
// 返回 [l,r] 内 1 的个数
// o=1, 1<=l<=r<=n
func (t seg01) onesCount(o, l, r int) int {
if l <= t[o].l && t[o].r <= r {
return t[o].ones
}
t.spread(o)
m := (t[o].l + t[o].r) >> 1
if r <= m {
return t.onesCount(o<<1, l, r)
}
if m < l {
return t.onesCount(o<<1|1, l, r)
}
return t.onesCount(o<<1, l, r) + t.onesCount(o<<1|1, l, r)
}
// 一些等价含义
func (t seg01) getBit(i int) bool { return t.onesCount(1, i, i) == 1 }
func (t seg01) all0(l, r int) bool { return t.onesCount(1, l, r) == 0 }
func (t seg01) all1(l, r int) bool { return t.onesCount(1, l, r) == r-l+1 }
func (t seg01) index0() int { return t.next0(1, 1) }
func (t seg01) index1() int { return t.next1(1, 1) }
func (t seg01) trailingZeros() int { return t.index1() } // -1
func (t seg01) len() int {
if t[1].state < 0 {
return 0
}
return t.lastIndex1(1)
}
// todo setRange resetRange