🧵 Day 23 Solutions Thread: post your solution here
I also finished my brute force today, takes a few minutes on the example, more than 2 hours on part 1 and again a few minutes on part 2 :D
Oof, I did not enjoy today’s puzzle, but darn it I got the code done! Part 1 with the test data takes a little over a minute to process, but the puzzle data and both inputs to Part 2 take between 6 and 10 minutes to run apiece. Can’t say I’m super proud of this one, but the code works and it’s actually fairly simple to look at, even if it’s inefficient! • https://github.com/abyala/advent-2021-clojure/blob/main/docs/day23.md • https://github.com/abyala/advent-2021-clojure/blob/main/src/advent_2021_clojure/day23.clj
i can't figure out a strategy for this one, I wanted to do a dumb bruteforce but I run out of memory, even though top doesn't show more than 80%, is that normal?
@antbbn It might be you have too many possible movements.
still haven’t written the code but here is my steps to solve the problem https://github.com/zelark/AoC-2021/blob/main/src/zelark/aoc_2021/day_23.clj
Yeah I also had a small bug in the calculation of possible states
Now it's slowly chugging along :D
I also resorted to solving part 1 manually just to see part 2 and boy oh boy i made my code really hard to extend :D
I found https://amphipod.net/ a nice tool to help you solve your input by hand 🙌🏻
a day behind now because of Christmas commitments… Dijkstra again. by a stroke of luck I barely had to change anything for part 2. 14s/17s https://github.com/callum-oakley/advent-of-code/blob/main/src/aoc/2021/23.clj
https://github.com/kconner/advent-of-code/blob/master/2021/23a.clj, https://github.com/kconner/advent-of-code/blob/master/2021/23b.clj in 18s and 25s
Solved it by hand LOL, gonna write a code later
I have part1, finally. But now I see part 2. Maybe in the morning...
https://github.com/nbardiuk/adventofcode/blob/master/2021/src/day23.clj
@nbardiuk how many time did you spend?
A lot 😅 I had a bug and had to make a big break just to refresh my head. From day 20 I feel tired a bit
Hope the last one won’t be so tough
https://gitlab.com/maximoburrito/advent2021/-/blob/main/src/day23/main.clj complete rewrite from part1 last night - I really liked this problem even though it was way too much work
An illustration https://i.imgur.com/h02XUWQ.jpg
The visualization get more and more life-like every year :)