Add slow day 22 part 1

master
Nick Krichevsky 2023-12-23 11:30:31 -05:00
parent 37ceb833e9
commit 01a8904df8
1 changed files with 241 additions and 0 deletions

241
day22/main.go Normal file
View File

@ -0,0 +1,241 @@
package main
import (
"cmp"
"errors"
"fmt"
"io"
"os"
"regexp"
"slices"
"strconv"
"strings"
)
type Coordinate struct {
X int
Y int
Z int
}
type Brick []Coordinate
func (b Brick) HighestPoint() Coordinate {
maxZFunc := func(a, b Coordinate) int {
return cmp.Compare(a.Z, b.Z)
}
return slices.MaxFunc(b, maxZFunc)
}
func (b Brick) LowestPoint() Coordinate {
minZFunc := func(a, b Coordinate) int {
return cmp.Compare(a.Z, b.Z)
}
return slices.MinFunc(b, minZFunc)
}
func main() {
if len(os.Args) != 2 {
fmt.Fprintf(os.Stderr, "Usage: %s inputfile\n", os.Args[0])
os.Exit(1)
}
inputFilename := os.Args[1]
inputFile, err := os.Open(inputFilename)
if err != nil {
panic(fmt.Sprintf("could not open input file: %s", err))
}
defer inputFile.Close()
inputBytes, err := io.ReadAll(inputFile)
if err != nil {
panic(fmt.Sprintf("could not read input file: %s", err))
}
input := strings.TrimSpace(string(inputBytes))
inputLines := strings.Split(input, "\n")
bricks, err := parseBricks(inputLines)
if err != nil {
panic(fmt.Sprintf("invalid input: %s", err))
}
if err != nil {
panic(fmt.Sprintf("failed to parse input: %s", err))
}
fmt.Printf("Part 1: %d\n", part1(bricks))
}
func part1(inputBricks []Brick) int {
bricks := slices.Clone(inputBricks)
sortByHeight(bricks)
slammedBricks := slices.Clone(bricks)
for i := range bricks {
brick, err := moveBrickDown(slammedBricks, i)
if err != nil {
// can't happen with our bounds
panic(err)
}
slammedBricks[i] = brick
}
safeBricks := []Brick{}
for i, brick := range slammedBricks {
withoutBrick := slices.Delete(slices.Clone(slammedBricks), i, i+1)
safe := true
for j, original := range withoutBrick {
if original.LowestPoint().Z < brick.HighestPoint().Z {
continue
}
upd, err := moveBrickDown(withoutBrick, j)
if err != nil {
// can't happen with our bounds
panic(err)
}
if !slices.Equal(upd, original) {
safe = false
break
}
}
if safe {
safeBricks = append(safeBricks, brick)
}
}
return len(safeBricks)
}
func moveBrickDown(bricks []Brick, brickIdx int) (Brick, error) {
if brickIdx < 0 || brickIdx >= len(bricks) {
return nil, fmt.Errorf("invalid brick index %d", brickIdx)
}
occupied := occupiedPositions(bricks)
brick := slices.Clone(bricks[brickIdx])
for brick.LowestPoint().Z > 1 {
nextBrick := slices.Clone(brick)
for i, pos := range nextBrick {
nextBrick[i] = Coordinate{X: pos.X, Y: pos.Y, Z: pos.Z - 1}
if idx, ok := occupied[nextBrick[i]]; ok && idx != brickIdx {
return brick, nil
}
}
brick = nextBrick
}
return brick, nil
}
func sortByHeight(bricks []Brick) {
slices.SortFunc(bricks, func(brick1, brick2 Brick) int {
min1Z := brick1.LowestPoint()
min2Z := brick2.LowestPoint()
return cmp.Compare(min1Z.Z, min2Z.Z)
})
}
func occupiedPositions(bricks []Brick) map[Coordinate]int {
occupied := map[Coordinate]int{}
for i, brick := range bricks {
for _, pos := range brick {
occupied[pos] = i
}
}
return occupied
}
func parseBricks(inputLines []string) ([]Brick, error) {
bricks, err := tryParse(inputLines, parseBrick)
if err != nil {
return nil, fmt.Errorf("parse brick: %s", err)
}
positions := map[Coordinate]struct{}{}
for _, brick := range bricks {
for _, pos := range brick {
if _, ok := positions[pos]; ok {
return nil, fmt.Errorf("bricks overlap at %+v", pos)
}
positions[pos] = struct{}{}
}
}
return bricks, nil
}
func parseBrick(line string) (Brick, error) {
pattern := regexp.MustCompile(`^(\d+),(\d+),(\d+)~(\d+),(\d+),(\d+)$`)
matches := pattern.FindStringSubmatch(line)
if matches == nil {
return nil, errors.New("malformed brick spec")
}
coordSlice1, err := tryParse([]string{matches[1], matches[2], matches[3]}, strconv.Atoi)
if err != nil {
// Can't happen, by the pattern
panic(fmt.Sprintf("could not convert coordinate to integers: %s", err))
}
coordSlice2, err := tryParse([]string{matches[4], matches[5], matches[6]}, strconv.Atoi)
if err != nil {
// Can't happen, by the pattern
panic(fmt.Sprintf("could not convert coordinate to integers: %s", err))
}
numDifferent := countDifferent(coordSlice1, coordSlice2)
if numDifferent > 1 {
return nil, fmt.Errorf("only one axis may differ in coordinates, found %d", numDifferent)
}
brick := make(Brick, 0, 3)
for x := coordSlice1[0]; x <= coordSlice2[0]; x++ {
for y := coordSlice1[1]; y <= coordSlice2[1]; y++ {
for z := coordSlice1[2]; z <= coordSlice2[2]; z++ {
brick = append(brick, Coordinate{X: x, Y: y, Z: z})
}
}
}
return brick, nil
}
func countDifferent[T comparable, S ~[]T](s1, s2 S) int {
if len(s1) != len(s2) {
panic("cannot compare lists of different lengths")
}
count := 0
for i, item := range s1 {
if item != s2[i] {
count++
}
}
return count
}
func tryParse[T any](items []string, parse func(string) (T, error)) ([]T, error) {
res := make([]T, 0, len(items))
for i, item := range items {
parsed, err := parse(item)
if err != nil {
return nil, fmt.Errorf("invalid item #%d: %w", i+1, err)
}
res = append(res, parsed)
}
return res, nil
}