-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.go
80 lines (74 loc) · 1.43 KB
/
Solution.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
type segmentTree struct {
str []byte
mx []int
lmx []int
rmx []int
}
func newSegmentTree(s string) *segmentTree {
n := len(s)
t := &segmentTree{
str: []byte(s),
mx: make([]int, n<<2),
lmx: make([]int, n<<2),
rmx: make([]int, n<<2),
}
t.build(0, 0, n-1)
return t
}
func (t *segmentTree) build(x, l, r int) {
if l == r {
t.lmx[x] = 1
t.rmx[x] = 1
t.mx[x] = 1
return
}
m := int(uint(l+r) >> 1)
t.build(x*2+1, l, m)
t.build(x*2+2, m+1, r)
t.pushup(x, l, m, r)
}
func (t *segmentTree) pushup(x, l, m, r int) {
lch, rch := x*2+1, x*2+2
t.lmx[x] = t.lmx[lch]
t.rmx[x] = t.rmx[rch]
t.mx[x] = max(t.mx[lch], t.mx[rch])
// can be merged
if t.str[m] == t.str[m+1] {
if t.lmx[lch] == m-l+1 {
t.lmx[x] += t.lmx[rch]
}
if t.rmx[rch] == r-m {
t.rmx[x] += t.rmx[lch]
}
t.mx[x] = max(t.mx[x], t.rmx[lch]+t.lmx[rch])
}
}
func (t *segmentTree) update(x, l, r, pos int, val byte) {
if l == r {
t.str[pos] = val
return
}
m := int(uint(l+r) >> 1)
if pos <= m {
t.update(x*2+1, l, m, pos, val)
} else {
t.update(x*2+2, m+1, r, pos, val)
}
t.pushup(x, l, m, r)
}
func max(x, y int) int {
if x > y {
return x
}
return y
}
func longestRepeating(s string, queryCharacters string, queryIndices []int) []int {
ans := make([]int, len(queryCharacters))
t := newSegmentTree(s)
n := len(s)
for i, c := range queryCharacters {
t.update(0, 0, n-1, queryIndices[i], byte(c))
ans[i] = t.mx[0]
}
return ans
}