-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.go
101 lines (79 loc) · 1.71 KB
/
code.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
package main
import (
"advent-of-code/helper"
"fmt"
"path"
"runtime"
"strconv"
"strings"
"time"
)
func main() {
_, f, _, _ := runtime.Caller(0)
cwd := path.Join(path.Dir(f))
input := helper.ReadInput(cwd, helper.NewLine)
iValues := input.Strings()
// Execute
start := time.Now()
result01 := part01(iValues)
result02 := part02(iValues)
executionTime := helper.ExecutionTime(time.Since(start))
fmt.Printf("Solution Part 1: %v\n", result01)
fmt.Printf("Solution Part 2: %v\n", result02)
fmt.Printf("Execution time: %s\n", executionTime)
helper.SaveBenchmarkTime(executionTime, cwd)
// Testing
helper.TestResults(
[]helper.TestingValue{
helper.TestingValue{Result: result01, Expect: 385391},
helper.TestingValue{Result: result02, Expect: 1728611055389},
},
)
}
// Task code
type Fish struct {
days int
}
func (f *Fish) reproduce() *Fish {
f.days--
if f.days < 0 {
fmt.Println(f.days)
f.days = 6
return &Fish{8}
}
return nil
}
func part01(input []string) int {
return calcFishes(80, parsFishSchool(input[0]))
}
func part02(input []string) int {
return calcFishes(256, parsFishSchool(input[0]))
}
func parsFishSchool(line string) map[int]int {
fishes := make(map[int]int, 0)
for _, s := range strings.Split(line, ",") {
fish, _ := strconv.Atoi(s)
fishes[fish]++
}
return fishes
}
func calcFishes(days int, startSchool map[int]int) int {
fishSchool := startSchool
for d := 1; d <= days; d++ {
iteration := make(map[int]int, 0)
for fd, f := range fishSchool {
if fd == 0 {
iteration[6] += f
iteration[8] = f
} else {
iteration[fd-1] += f
}
}
fishSchool = iteration
}
var count int
for _, f := range fishSchool {
count += f
}
return count
}