-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtask.go
47 lines (38 loc) · 782 Bytes
/
task.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
package main
import (
"bufio"
"fmt"
"io"
"os"
"strings"
)
func main() {
s := strings.Builder{}
Solution(os.Stdin, &s)
fmt.Println(strings.TrimSpace(s.String()))
}
func Solution(r io.Reader, s *strings.Builder) {
scanner := bufio.NewScanner(r)
const bufCapacity = 100000000 // fix long string
buf := make([]byte, bufCapacity)
scanner.Buffer(buf, bufCapacity)
scanner.Scan()
str := scanner.Text()
prefix := string(str[0])
prefixLength := len(prefix)
i := 1
for i+prefixLength <= len(str) {
if prefix == str[i:i+prefixLength] {
i += prefixLength
} else {
i++
prefix = str[:i]
prefixLength = len(prefix)
}
}
if len(prefix) > len(str)/2 {
prefix = str
prefixLength = len(prefix)
}
s.WriteString(fmt.Sprint(len(str) / prefixLength))
}