add day-04 + benchmarks

This commit is contained in:
2024-12-05 01:31:44 +00:00
parent fca32422e4
commit e7aa98d637
19 changed files with 498 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
goos: linux
goarch: amd64
pkg: github.com/onyx-and-iris/aoc2024/day-04/internal/one
cpu: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz
BenchmarkSolve-12 1000000000 0.001288 ns/op
ok github.com/onyx-and-iris/aoc2024/day-04/internal/one 0.013s

View File

@@ -0,0 +1,12 @@
package one
const (
N = iota
NE
E
SE
S
SW
W
NW
)

View File

@@ -0,0 +1,58 @@
package one
type neighbour struct {
x int
y int
direction int
}
func newNeighbour(direction, x, y int) neighbour {
switch direction {
case N:
return neighbour{x, y + 1, direction}
case NE:
return neighbour{x + 1, y + 1, direction}
case E:
return neighbour{x + 1, y, direction}
case SE:
return neighbour{x + 1, y - 1, direction}
case S:
return neighbour{x, y - 1, direction}
case SW:
return neighbour{x - 1, y - 1, direction}
case W:
return neighbour{x - 1, y, direction}
case NW:
return neighbour{x - 1, y + 1, direction}
default:
return neighbour{}
}
}
type neighbours struct {
N neighbour
NE neighbour
E neighbour
SE neighbour
S neighbour
SW neighbour
W neighbour
NW neighbour
}
func newNeighbours(x, y int) neighbours {
return neighbours{
newNeighbour(N, x, y),
newNeighbour(NE, x, y),
newNeighbour(E, x, y),
newNeighbour(SE, x, y),
newNeighbour(S, x, y),
newNeighbour(SW, x, y),
newNeighbour(W, x, y),
newNeighbour(NW, x, y),
}
}
func (n neighbours) all() [8]neighbour {
return [8]neighbour{n.N, n.NE, n.E, n.SE, n.S, n.SW, n.W, n.NW}
}

View File

@@ -0,0 +1,55 @@
package one
import (
"bytes"
"github.com/onyx-and-iris/aoc2024/day-04/internal/util"
log "github.com/sirupsen/logrus"
)
func Solve(data []byte) (int, error) {
r := bytes.NewReader(data)
lines, err := util.ReadLines(r)
if err != nil {
return 0, err
}
var sum int
for i := 0; i < len(lines); i++ {
for j := 0; j < len(lines[i]); j++ {
neighbours := newNeighbours(j, i)
for _, n := range neighbours.all() {
if n.x < 0 || n.y < 0 || n.y >= len(lines) || n.x >= len(lines[i]) {
continue
}
if lines[i][j] == 'X' {
if checkNeighbours(n, "MAS", lines) {
sum++
}
}
}
}
}
return sum, nil
}
func checkNeighbours(n neighbour, word string, lines []string) bool {
if len(word) == 0 {
log.Debug("we found a full XMAS")
return true
}
if n.x < 0 || n.y < 0 || n.y >= len(lines) || n.x >= len(lines[n.y]) {
return false
}
if lines[n.y][n.x] != word[0] {
return false
}
return checkNeighbours(newNeighbour(n.direction, n.x, n.y), word[1:], lines)
}

View File

@@ -0,0 +1,15 @@
package one
import (
_ "embed"
"os"
"testing"
)
//go:embed testdata/input.txt
var data []byte
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@@ -0,0 +1,6 @@
goos: linux
goarch: amd64
pkg: github.com/onyx-and-iris/aoc2024/day-04/internal/two
cpu: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz
BenchmarkSolve-12 1000000000 0.005979 ns/op
ok github.com/onyx-and-iris/aoc2024/day-04/internal/two 0.042s

View File

@@ -0,0 +1,8 @@
package two
const (
NW = iota
NE
SE
SW
)

View File

@@ -0,0 +1,56 @@
package two
import (
"fmt"
"reflect"
log "github.com/sirupsen/logrus"
)
type matrix [3][3]rune
func newMatrix(mid, nw, ne, se, sw rune) *matrix {
return &matrix{
{nw, -1, ne},
{-1, mid, -1},
{sw, -1, se},
}
}
func (m *matrix) String() string {
temp := [3][3]string{}
for i := 0; i < 3; i++ {
for j := 0; j < 3; j++ {
temp[i][j] = string(m[i][j])
}
}
return fmt.Sprintf("\n%s\n%s\n%s", temp[0], temp[1], temp[2])
}
func (m *matrix) rotate() *matrix {
temp := matrix{}
for i := 0; i < 3; i++ {
for j := 0; j < 3; j++ {
temp[3-j-1][i] = m[i][j]
}
}
return &temp
}
func (m *matrix) validate() bool {
golden := &matrix{
{'M', -1, 'M'},
{-1, 'A', -1},
{'S', -1, 'S'},
}
for range 4 {
if reflect.DeepEqual(m, golden) {
log.Debugf("%s \n---- %s", m.String(), golden.String())
return true
}
golden = golden.rotate()
}
return false
}

View File

@@ -0,0 +1,50 @@
package two
type neighbour struct {
x int
y int
direction int
}
func newNeighbour(direction, x, y int) neighbour {
switch direction {
case NW:
return neighbour{x - 1, y + 1, direction}
case NE:
return neighbour{x + 1, y + 1, direction}
case SE:
return neighbour{x + 1, y - 1, direction}
case SW:
return neighbour{x - 1, y - 1, direction}
default:
return neighbour{}
}
}
func (n neighbour) outOfBounds(lines []string) bool {
return n.x < 0 || n.y < 0 || n.y >= len(lines) || n.x >= len(lines[0])
}
func (n neighbour) value(lines []string) rune {
return rune(lines[n.y][n.x])
}
type neighbours struct {
NW neighbour
NE neighbour
SE neighbour
SW neighbour
}
func newNeighbours(x, y int) neighbours {
return neighbours{
newNeighbour(NW, x, y),
newNeighbour(NE, x, y),
newNeighbour(SE, x, y),
newNeighbour(SW, x, y),
}
}
func (n neighbours) all() [4]neighbour {
return [4]neighbour{n.NW, n.NE, n.SE, n.SW}
}

View File

@@ -0,0 +1,53 @@
package two
import (
"bytes"
"slices"
"github.com/onyx-and-iris/aoc2024/day-04/internal/util"
)
func Solve(data []byte) (int, error) {
r := bytes.NewReader(data)
lines, err := util.ReadLines(r)
if err != nil {
return 0, err
}
var sum int
for i := 0; i < len(lines); i++ {
for j := 0; j < len(lines[i]); j++ {
if lines[i][j] == 'A' {
neighbours := newNeighbours(j, i)
if func() bool {
for _, n := range neighbours.all() {
if n.outOfBounds(lines) {
return true
}
if !slices.Contains([]rune{'M', 'S'}, n.value(lines)) {
return true
}
}
return false
}() {
continue
}
matrix := newMatrix(
rune(lines[i][j]),
neighbours.NW.value(lines),
neighbours.NE.value(lines),
neighbours.SE.value(lines),
neighbours.SW.value(lines),
)
if matrix.validate() {
sum++
}
}
}
}
return sum, nil
}

View File

@@ -0,0 +1,15 @@
package two
import (
_ "embed"
"os"
"testing"
)
//go:embed testdata/input.txt
var data []byte
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}

View File

@@ -0,0 +1,21 @@
package util
import (
"bufio"
"io"
)
func ReadLines(r io.Reader) ([]string, error) {
lines := []string{}
scanner := bufio.NewScanner(r)
for scanner.Scan() {
lines = append(lines, scanner.Text())
}
if err := scanner.Err(); err != nil {
return []string{}, err
}
return lines, nil
}