Advent of Code: Day 19
Medicine for Rudolph

First puzzle

We are in chemistry class! This puzzle is all about molecule generation. We receive a molecule and possible element replacements we could use to generate another molecule. For example, with the molecule “HOH”, and the following replacements:

The following molecules could be generated:

The solution to the puzzle is to find how many distinct molecules could be generated with the possible replacements and first molecule we receive as the puzzle input. In the above example from the puzzle description, the solution is four distinct molecules.

The only part of the input we need to parse are the replacements:

One idea we could use is to generate all the possible molecules by replacing one element at a time. Once all the molecules are calculated, we could find the distinct molecules and count them:

Second puzzle

The second puzzle is a bit different. Starting from the element “e”, we need to find the fewest number of steps to generate the input molecule. For example, to generate the molecule HOH, we need the following transformations:

The molecule will be three steps. For the molecule HOHOHO, six steps are required.

Ok, let start trying to generate the molecule! A few days pass with a few hours dedicated to solving this. No luck and a lot of frustration. The molecule is huge and starting from “e” there were a lot of transformations. I needed help, and Google is always your friend. I found Yan Cui’s description pointing to the solution published by askalski on the Advent of Code subreddit. Even with the solution description, it took a while to get an implementation. Please, read the solution on those links. So far, this was the more complex problem I found on Advent of Code. Here is the implementation:

You can find this code along with my input and puzzle answers at here.

*****
Written by Darien Martinez Torres on 19 March 2016