-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
121 lines (93 loc) · 1.62 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
package main
import (
"bytes"
"fmt"
"io"
"os"
"slices"
)
func main() {
input, _ := io.ReadAll(os.Stdin)
fmt.Printf("Part 1: %d\n", part1(input))
fmt.Printf("Part 2: %d\n", part2(input))
}
func part1(input []byte) int {
var sum int
var pos int
yield := func(fileID int) {
sum += pos * fileID
pos++
}
ints := parse(input)
N := len(ints) - 1
for n := 0; n <= N; n++ {
if n%2 == 0 { // file
fileID := n / 2
for range ints[n] {
yield(fileID)
}
} else { // space
fileID := N / 2
for ints[n] > 0 && ints[N] > 0 {
yield(fileID)
ints[n]--
ints[N]--
if ints[N] == 0 {
N -= 2
fileID = N / 2
}
}
}
}
return sum
}
func part2(input []byte) int {
type file struct {
id int
size int
}
fileMap := make(map[int][]file)
ints := parse(input)
origInts := slices.Clone(ints)
for N := len(ints) - 1; N >= 0; N -= 2 {
fileID := N / 2
for n := 1; n < N; n += 2 {
if ints[n] >= ints[N] {
fileMap[n] = append(fileMap[n], file{fileID, ints[N]})
ints[n] -= ints[N]
ints[N] = 0
break
}
}
}
for n := 0; n < len(ints); n += 2 {
fileMap[n] = []file{{n / 2, ints[n]}}
}
var sum int
var pos int
for n := range ints {
if files, ok := fileMap[n]; ok {
for _, f := range files {
for range f.size {
sum += pos * f.id
pos++
}
}
}
if n%2 != 0 {
pos += ints[n]
} else {
if ints[n] == 0 {
pos += origInts[n]
}
}
}
return sum
}
func parse(input []byte) []int {
ints := make([]int, 0, len(input))
for n := range bytes.TrimSpace(input) {
ints = append(ints, int(input[n]-'0'))
}
return ints
}