-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06-1.go
79 lines (71 loc) · 1.6 KB
/
06-1.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
package main
import (
"fmt"
"io/ioutil"
"strconv"
"strings"
)
// wrapping index
func wind(slc []int, i int) int {
if i < 0 {
return len(slc) - i
} else if i >= len(slc) {
return i % len(slc)
} else {
return i
}
}
// returns string representation of integer slice
func strep(slc []int) string {
var strslc []string
for _, x := range slc {
nStr := strconv.Itoa(x)
strslc = append(strslc, nStr)
}
return strings.Join(strslc, ",")
}
func main() {
// read the input to int slice (intSlice)
f, err := ioutil.ReadFile("06-input.txt")
if err != nil {
fmt.Println("reading file failed:", err)
}
input := string(f)
slc := strings.Split(input, "\t")
var intSlice []int
for _, x := range slc {
n, err := strconv.Atoi(x)
if err != nil {
fmt.Println("Parsing int from string failed: ", err)
}
intSlice = append(intSlice, n)
}
// save the slices we've been to as set of string representations or smth
// ...except go-lang doesn't have sets so we'll use map
beentheredonethat := make(map[string]bool)
redistcycles := 0
for {
_, beenthere := beentheredonethat[strep(intSlice)]
if beenthere {
break
}
beentheredonethat[strep(intSlice)] = true
// find the index of largest element
maxValue := intSlice[0]
indexOfMax := 0
for i, x := range intSlice {
if x > maxValue {
maxValue = x
indexOfMax = i
}
}
// distribute the largest element
intSlice[indexOfMax] = 0
for i := indexOfMax + 1; maxValue > 0; maxValue-- {
intSlice[wind(intSlice, i)] = intSlice[wind(intSlice, i)] + 1
i++
}
redistcycles++
}
fmt.Println("Cycles until repeating:", redistcycles)
}