chore: cleanup base tools
All checks were successful
Go Test / build (pull_request) Successful in 34s

This commit is contained in:
xuu
2023-12-27 14:01:04 -07:00
parent bcd90a57f3
commit 2057a30420
8 changed files with 362 additions and 345 deletions

View File

@@ -24,8 +24,8 @@ func (r result) String() string { return fmt.Sprintf("%#v", r) }
func run(scan *bufio.Scanner) (*result, error) {
var vecsPT1 []vector
var vecsPT2 []vector
var vecsPT1 []aoc.Vector
var vecsPT2 []aoc.Vector
for scan.Scan() {
text := scan.Text()
@@ -45,45 +45,7 @@ func run(scan *bufio.Scanner) (*result, error) {
}, nil
}
type vector struct {
offset point
scale int
}
type point [2]int
func (p point) add(a point) point {
return point{p[0] + a[0], p[1] + a[1]}
}
func (p point) scale(m int) point {
return point{p[0] * m, p[1] * m}
}
// numPoints the number of the points inside an outline plus the number of points in the outline
func numPoints(outline []point, borderLength int) int {
// shoelace - find the float area in a shape
sum := 0
for _, p := range pairwise(outline) {
row1, col1 := p[0][0], p[0][1]
row2, col2 := p[1][0], p[1][1]
sum += row1*col2 - row2*col1
}
area := sum / 2
// pick's theorem - find the number of points in a shape given its area
return (aoc.ABS(area) - borderLength/2 + 1) + borderLength
}
func pairwise[T any](arr []T) [][2]T {
var pairs [][2]T
for i := range arr[:len(arr)-1] {
pairs = append(pairs, [2]T{arr[i], arr[i+1]})
}
return pairs
}
var OFFSET = map[string]point{
var OFFSET = map[string]aoc.Point{
"R": {0, 1},
"D": {1, 0},
"L": {0, -1},
@@ -91,39 +53,38 @@ var OFFSET = map[string]point{
}
var OFFSET_INDEXES = maps.Values(OFFSET)
func fromLine(text string) (vector, string) {
v := vector{}
func fromLine(text string) (aoc.Vector, string) {
v := aoc.Vector{}
s, text, _ := strings.Cut(text, " ")
v.offset = OFFSET[s]
v.Offset = OFFSET[s]
s, text, _ = strings.Cut(text, " ")
v.scale = aoc.Atoi(s)
v.Scale = aoc.Atoi(s)
_, text, _ = strings.Cut(text, "(#")
s, _, _ = strings.Cut(text, ")")
return v, s
}
func fromColor(c string) vector {
func fromColor(c string) aoc.Vector {
scale, _ := strconv.ParseInt(c[:5], 16, 64)
offset := OFFSET_INDEXES[c[5]-'0']
return vector{
offset: offset,
scale: int(scale),
return aoc.Vector{
Offset: offset,
Scale: int(scale),
}
}
func findArea(vecs []vector) int {
shoelace := []point{{0,0}}
func findArea(vecs []aoc.Vector) int {
shoelace := []aoc.Point{{0,0}}
borderLength := 0
for _, vec := range vecs {
scaled_offset := vec.offset.scale(vec.scale)
shoelace = append(shoelace, shoelace[len(shoelace)-1].add(scaled_offset))
borderLength += vec.scale
shoelace = append(shoelace, shoelace[len(shoelace)-1].Add(vec.Point()))
borderLength += vec.Scale
}
return numPoints(shoelace, borderLength)
return aoc.NumPoints(shoelace, borderLength)
}