-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
137 lines (126 loc) · 1.89 KB
/
main.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
package main
import (
"fmt"
"math"
)
func main() {
var (
target int
s string
)
fmt.Scan(&target)
fmt.Scan(&s)
fmt.Println(maxSubStringLength(s, target))
}
func maxSubStringLength(s string, target int) int {
yuan := map[byte]bool{
'a': true,
'e': true,
'i': true,
'o': true,
'u': true,
'A': true,
'E': true,
'I': true,
'O': true,
'U': true,
}
var left, right int
var ans int
var sum int
for right < len(s) {
if yuan[s[right]] && ((right < len(s)-1 && !yuan[s[right+1]]) || right == len(s)-1) {
for !yuan[s[left]] {
sum--
left++
}
if sum >= target {
if sum == target {
ans = max(ans, right-left+1)
}
for left < right && yuan[s[left]] {
left++
}
if left < right {
continue
}
}
}
if !yuan[s[right]] {
sum++
}
right++
}
return ans
}
func max(a, b int) int {
if a > b {
return a
}
return b
}
// aavaaavaaaa
func minSender(address []int) int {
var (
ans = math.MaxInt64
left int
backtracting func(int)
choice = make(map[int]bool)
)
backtracting = func(cnt int) {
if cnt == len(address) || left == 0 {
if cnt < ans {
ans = cnt
}
return
}
if cnt >= ans {
return
}
for i := 0; i < len(address); i++ {
if choice[i] {
continue
}
choice[i] = true
var pre, cur, next bool
if address[i] == 1 {
address[i] = 0
cur = true
left--
}
if i > 0 && address[i-1] == 1 {
address[i-1] = 0
pre = true
left--
}
if i < len(address)-1 && address[i+1] == 1 {
address[i+1] = 0
next = true
left--
}
backtracting(cnt + 1)
if cur {
address[i] = 1
left++
}
if pre {
address[i-1] = 1
left++
}
if next {
address[i+1] = 1
left++
}
choice[i] = false
}
}
for _, v := range address {
if v == 1 {
left++
}
}
backtracting(0)
return ans
}
func buy() {
}