Advent of Code: Day 9
All in a Single Night

First puzzle

This puzzle is classic. We need to find the shortest route to “visit” a set of locations. The example locations are as follow:

In this case, the shortest route is: London -> Dublin -> Belfast (route length 605)

It is important to consider the following route restrictions:

The input is a string were route length from one location to another location is defined as LOCATION1 to LOCATION2 = LENGTH. All these little routes (edges) are separated with “\n”. It is convenient to parse this string into a case class Path we could use later on:

At the end of the parsing, we have a pair of the nodes(locations) and the paths(edges). Note there are no millions of locations. That is the reason we could calculate the length of every route by using the location permutations. With the route’s lengths, the solution is the smaller:

Second puzzle

The second puzzle is to calculate the longest route:

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

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