Project Euler – Problem 82 Solution

Yan Cui

I help clients go faster for less using serverless technologies.

The problem description is here, and click here to see all my other Euler solutions in F#.

 

This is a more difficult version of problem 81, but still, as you can’t move left so we can still optimize one column at a time.

First, let’s read the input file into a 2D array:

Prob82_01

and initialize another matrix with the same size to store the minimum sum to each of the cells:

Prob82_02

In order to avoid miscalculations due to uninitialized cells (i.e. if we had initialized them with 0), I’ve initialized the cells by assuming that we have moved right all the way, hence this line:

    else matrix.[row, 0..col] |> Array.sum

which adds up all the cells to the left of, and including, the (row, col) cell.

Next, we’ll add a couple of helper functions to work out the new minimum sum to the cell at (row, col) if we had moved up, down, or right:

Prob82_03

We can now use these functions to optimize the columns one at a time.

The tricky thing here is that we might need a few passes to converge onto the true minimum sum path to each of the cells. For example, in order to work out the minimum sum at (row, col) we need to know the minimum sum at (row-1, col) and (row+1, col). But to work out the minimum sum at (row-1, col) we need to know the minimum sum at (row, col)!

So, instead, we’ll recursively try to optimize each cell in the column until it can’t be optimized anymore:

Prob82_04

At the end of the snippet above, we optimized the columns one at a time from left to right. (I could have equally included this as part of the recursive function, but it would introduce another level of nesting which is why I opted against it)

And finally, look for the minimum sum on the right-most column in the sum matrix to answer the question:

Prob82_05

This solution runs in 9ms on my laptop.

 

The source code for this solution is here.


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


2 thoughts on “Project Euler – Problem 82 Solution”

  1. Pingback: F# Weekly #5, 2016 | Sergey Tihon's Blog

  2. Pingback: Project Euler - Problem 83 Solution | theburningmonk.com

Leave a Comment

Your email address will not be published. Required fields are marked *