Alchemical Reduction
September 10, 2019
Today’s exercise is from the 2018 Advent of Code, Day 5:
You’ve managed to sneak in to the prototype suit manufacturing lab. The Elves are making decent progress, but are still struggling with the suit’s size reduction capabilities.
While the very latest in 1518 alchemical technology might have solved their problem eventually, you can do better. You scan the chemical composition of the suit’s material and discover that it is formed by extremely long polymers (one of which is available as your puzzle input).
The polymer is formed by smaller units which, when triggered, react with each other such that two adjacent units of the same type and opposite polarity are destroyed. Units’ types are represented by letters; units’ polarity is represented by capitalization. For instance, r and R are units with the same type but opposite polarity, whereas r and s are entirely different types and do not react.
For example:
– In aA, a and A react, leaving nothing behind.
– In abBA, bB destroys itself, leaving aA. As above, this then destroys itself, leaving nothing.
– In abAB, no two adjacent units are of the same type, and so nothing happens.
– In aabAAB, even though aa and AA are of the same type, their polarities match, and so nothing happens.
Now, consider a larger example, dabAcCaCBAcCcaDA:
dabAcCaCBAcCcaDA The first 'cC' is removed. dabAaCBAcCcaDA This creates 'Aa', which is removed. dabCBAcCcaDA Either 'cC' or 'Cc' are removed (the result is the same). dabCBAcaDA No further actions can be taken.After all possible reactions, the resulting polymer contains 10 units.
How many units remain after fully reacting the polymer you scanned?
Your task is to write a program that solves the alchemical reduction. When you are finished, you are welcome to read or run a suggested solution, or to post your own solution or discuss the exercise in the comments below.
Nifty little exercise. Not sure if it qualifies as alchemy, but it’s definitely a nice challenge. Here is my take using Julia 1.1: https://pastebin.com/DE53t8nw
Cheers!
There was a bug in my previous attempt (a cool exercise in itself!) so here is the refined code: https://pastebin.com/5yddm5CJ
Cheers!
Here’s a simple solution in R7RS Scheme, focusing on clarity. The
imports are all trivial.
My Haskell solution relies mostly on a single
:
Regarding blog posts, I really like the elegance of this one, which shows this is just an exercise in group theory.
Here’s a little C++ solution, doing in-place modification of a 0-terminated char array.
A couple of solutions in Racket.
Here’s a solution in Python.
Output: