Compare commits

...

5 Commits

Author SHA1 Message Date
1c60c034e3 remove const obstacle 2024-12-06 23:31:22 +00:00
3ce4a4112e rerun benchmarks 2024-12-06 23:19:11 +00:00
02443ef244 move check is loop logic to top of loop 2024-12-06 23:17:44 +00:00
08706ecc11 make use of graph factory function.
move isLoop logic into guard clause.
2024-12-06 22:23:01 +00:00
8bf3f603d5 remove {graph}.obstacles 2024-12-06 20:31:38 +00:00
8 changed files with 26 additions and 38 deletions

View File

@ -2,14 +2,14 @@ goos: linux
goarch: amd64
pkg: github.com/onyx-and-iris/aoc2024/day-06
cpu: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz
BenchmarkSolve-12 1 1815042506 ns/op
BenchmarkSolve-12 1 1670139306 ns/op
BenchmarkSolve-12 1 1708459605 ns/op
BenchmarkSolve-12 1 1687274507 ns/op
BenchmarkSolve-12 1 1722070212 ns/op
BenchmarkSolve-12 1 1728997012 ns/op
BenchmarkSolve-12 1 1738883012 ns/op
BenchmarkSolve-12 1 1686811712 ns/op
BenchmarkSolve-12 1 1701938016 ns/op
BenchmarkSolve-12 1 1701384522 ns/op
ok github.com/onyx-and-iris/aoc2024/day-06 17.190s
BenchmarkSolve-12 1 1787027305 ns/op
BenchmarkSolve-12 1 1669661404 ns/op
BenchmarkSolve-12 1 1702069604 ns/op
BenchmarkSolve-12 1 1702577205 ns/op
BenchmarkSolve-12 1 1708872905 ns/op
BenchmarkSolve-12 1 1825434105 ns/op
BenchmarkSolve-12 1 1667198605 ns/op
BenchmarkSolve-12 1 1650618104 ns/op
BenchmarkSolve-12 1 1726260907 ns/op
BenchmarkSolve-12 1 1667980407 ns/op
ok github.com/onyx-and-iris/aoc2024/day-06 17.133s

View File

@ -2,5 +2,5 @@ goos: linux
goarch: amd64
pkg: github.com/onyx-and-iris/aoc2024/day-06/internal/one
cpu: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz
BenchmarkSolve-12 1000000000 0.007368 ns/op
BenchmarkSolve-12 1000000000 0.006992 ns/op
ok github.com/onyx-and-iris/aoc2024/day-06/internal/one 0.052s

View File

@ -7,8 +7,8 @@ import (
)
type graph struct {
data []string
startPoint point
data []string
}
func newGraph() *graph {

View File

@ -2,5 +2,5 @@ goos: linux
goarch: amd64
pkg: github.com/onyx-and-iris/aoc2024/day-06/internal/two
cpu: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz
BenchmarkSolve-12 1000000000 0.0000547 ns/op
BenchmarkSolve-12 1000000000 0.0000354 ns/op
ok github.com/onyx-and-iris/aoc2024/day-06/internal/two 0.006s

View File

@ -5,5 +5,4 @@ const (
E
S
W
obstacle
)

View File

@ -7,13 +7,12 @@ import (
)
type graph struct {
data []string
startPoint point
obstacles []point
data []string
}
func newGraph() *graph {
return &graph{}
func newGraph(startPoint point, data []string) *graph {
return &graph{startPoint: startPoint, data: data}
}
func (g *graph) String() string {

View File

@ -24,9 +24,7 @@ func Solve(buf []byte) (int, error) {
continue
}
g := newGraph()
g.startPoint = graph.startPoint
g.data = slices.Clone(graph.data)
g := newGraph(graph.startPoint, slices.Clone(graph.data))
g.data[loc.Y] = replaceAtIndex(g.data[loc.Y], 'O', loc.X)
p := g.startPoint
@ -37,19 +35,18 @@ func Solve(buf []byte) (int, error) {
p.y == 0 && p.direction == N ||
p.y == len(g.data)-1 && p.direction == S ||
p.x == len(g.data[p.y])-1 && p.direction == E) {
p = nextPoint(p)
if g.valueAt(p.x, p.y) == '#' || g.valueAt(p.x, p.y) == 'O' {
p.recalibrate()
}
_, ok := visited[p]
if !ok {
visited[p] = struct{}{}
} else {
if ok {
log.Tracef("loop: \n%s\n", g.trace(visited))
isLoop <- true
return
}
visited[p] = struct{}{}
p = nextPoint(p)
if g.valueAt(p.x, p.y) == '#' || g.valueAt(p.x, p.y) == 'O' {
p.recalibrate()
}
}
isLoop <- false
}()

View File

@ -7,7 +7,7 @@ import (
)
func parseLines(r io.Reader) (*graph, error) {
graph := newGraph()
graph := &graph{}
count := 0
scanner := bufio.NewScanner(r)
@ -18,13 +18,6 @@ func parseLines(r io.Reader) (*graph, error) {
graph.startPoint = point{indx, count, N}
}
graph.data = append(graph.data, scanner.Text())
for i, r := range line {
if r == '#' {
graph.obstacles = append(graph.obstacles, point{i, count, obstacle})
}
}
count++
}