Project Euler/15
From charlesreid1
Contents
- 1 Lattice Paths
- 2 Related
- 3 Flags
Lattice Paths
Problem 15 link: https://projecteuler.net/problem=15
Project Euler problem 15 gives a square lattice, 20 x 20, and asks for the number of shortest paths through the lattice. The shortest paths are illustrated for a 4x4 grid.
I solved this question using Wolfram Alpha - as with many combinatorics problems, it turns out you don't need to generate all of the variations, you can write a closed-form expression for the number of combinations instead. We use the fact that any shortest path must be constrained to taking 20 down steps and 20 right steps.
Formulating the Problem
We can examine the smaller 4x4 grid to think through the problem and our representation of it. We know that the path we take has to have two down steps and two right steps. We can represent the particular path we take using a string, so the following would represent the path that travels down two squares then right two squares:
DDRR
Now the question of how many paths there are through the cubic lattice boils down to a question of permutations. How many unique permutations of the above string are there?
Permutations
Let's suppose we have a string consisting of unique characters:
ABCDEFG
Now how many permutations of this string are there? The first letter can be any of the 7 characters, so we have 7 possibilities. The second letter can be any of the remaining 6 characters, so we have 7 * 6 possibilities. And so on down the line, until we get a total number of possible permutations of the string equal to
There are 5040 unique permutations of the string.
Our situation is complicated by the fact that some of our permutations are repeated. For example, if we label the two down moves as D1 and D2, we can choose the first move as D1 and the second move as D2, or the first move as D2 and the second move as D1 - the two are equivalent. This will eliminate some of the permutations.
Multiset Approach for Two Variables
We only have two unique variables/moves, D and R. We can think of the problem of generating permutations as inserting the down moves into a sequence of right moves. We have a certain number of locations where we can insert the down moves, and down moves can be inserted in order.
This is what's often called a stars-and-bars problem in combinatorics: trying to determine the number of permutations of items from multisets can be described as partitioning star characters with bar characters.
For example, if we are adding 5 components to a circuit board, and they can be any one of 9 possible components, we can represent this as the partitioning of 5 stars among 9 bins, or 8 bars. Here are some possibilities:
|||||||| <-- No choices made yet (9 bins, 8 partitions) *|*||*||*|*|| <-- Mix of different components ||*|*||*|*||* <-- Mix of different components ****|||*||||| <-- Heavy on component 1 *|**|||**|||| <-- Two pairs
To formulate our problem in these terms, we can think of "distributing" our down moves as we move right through the lattice. On the 20x20 grid, we are going to make 20 right moves, and we can distribute our 20 down moves at any of 21 possible locations (columns of points on the lattice).
Thus, our n items, the 20 down moves, are being placed between the 20 right moves, which are the 20 bars that create 21 bins (21 locations to place the down moves).
Considering the smaller 2x2 example, and replacing bars with R, we have, for a 2x2 lattice, six possibilities:
RR <-- No choices made yet **RR <-- all on left *R*R <-- distributed... etc... *RR* R**R R*R* RR**
To enumerate the number of possibilities, we use the multichoose function, denoted "n multichoose k". This counts the number of ways to place n objects (D) into k bins (created by k-1 other objects, R). The multichoose function is defined as (see wikipedia for proper Latex notation - like the binomial coefficient but 2 parentheses):
where, again, n is number of objects, being split into k partitions by k-1 other objects.
Now, let's plug in the numbers for the 2 by 2 lattice. We get:
We are partitioning 2 down moves among 3 possible columns in the lattice. This gives:
which is indeed the number of paths through the lattice.
Number of Paths Thru Lattices of Arbitrary Size
To generalize, on a lattice of width W and height H, we have W right moves that form W+1 partitions, in which we are placing H items. The number of possible paths through the lattice is therefore equivalent to permutations of the string:
RRRR...(W times)...RRRDDDD...(H times)...DDDD
Now n and k are given by:
so the total number of possible paths through the W x H square lattice is:
The number of paths through a 4 x 2 lattice (identical to the number of paths through a 2 x 4 lattice) is:
The number of paths through an 8x8 lattice is given by:
and finally, the number of paths through a 20 x 20 lattice is given by:
Generalizing to 3-Dimensional and Higher-Dimensional Lattices
If we take this idea a step further and use a slightly different combinatoric formula, we can generalize the problem to paths through higher dimensional lattices. This is an approach I came up with through trial and error, and some experimentation with Mathematica.
Suppose we have a 3D lattice, composed of 8 cubes, 2 on each side. Now we wish to know: how many shortest Manhattan distance paths are there through the lattice, from one corner to the other?
This can be re-cast, as we did above, as the problem of counting unique permutations of a string of the form:
UURRBB
where U denotes an up move, R denotes a right move, and B denotes a back move.
While we could use the multiset approach from above to describe this problem, it turns out that this approach is not powerful enough to describe the problem of arbitrary 3D lattices.
Let's pose the problem slightly more generally: we have C bags of moves or characters, each of a different size. We must use each character i precisely as many times as we have instances in its bag C_i. How many unique permutations are there?
Consider the following example string of length , consisting of UP moves, RIGHT moves, and BACK moves, forming a path through a 3D lattice of size :
UUUURRRRBBBBBB
The number of unique permutations can be computed by breaking this into sub-problems. Start by asking how many permutations there are of the string:
UUUUXXXXXXXXXX
(Treating the Rs and Bs as identical). Then we get:
Next, we deal with the other sub-problem, the Xs, by asking how many ways we can permute the following string:
RRRRBBBBBB
which is solved via another binomial coefficient. This number of permutations is given by:
Now combining these, we get the overall number of permutations:
Special Case: Perfect Cube Lattice
If we have the special case of a perfect cube lattice, the formula above reduces to the nice and symmetric:
4 Dimensional Lattice Example
Let's look at the example of a traversal of a 4D lattice, which we can think of as the evolution of a 3D traversal in time (a step in the fourth dimension would represent a "pause" in the 3D traversal).
Solution Technique 1
Consider the traversal of a cube with dimensions . Then
A path on this 4D lattice has the form:
UUURRRRBBBBBWWW
(where W denotes wait, or a step in the time dimension).
The number of permutations is given by:
For our specific example,
Confirmed by Mathematica:
Solution Technique 2
Again we consider the traversal of a cube with dimensions . Then
This time, we determine the number of permutations of the string UUURRRRBBBBBWWW
by counting multiset permutations. We know that each symbol must appear exactly times, so we have a single multiset permutation counting expression to cover all possible lattice paths. In general, the multiset combination of things, each occurring times, into objects of length , is given by:
In the case of a 4D lattice this gives:
the same result as obtained before.
Note that the multiset permutation approach is slightly more flexible, as it can handle cases where the number of steps in the U/R/B/W direction changes.
Related
Blog post: Shortest Lattice Paths and Multiset Permutations: https://charlesreid1.github.io/shortest-lattice-paths-and-multiset-permutations.html
Flags
Project Euler project euler notes
Round 1: Problems 1-20 Problem 1 · Problem 2 · Problem 3 · Problem 4 · Problem 5 · Problem 6 · Problem 7 · Problem 8 · Problem 9 · Problem 10 Problem 11 · Problem 12 · Problem 13 · Problem 14 · Problem 15 · Problem 16 · Problem 17 · Problem 18 · Problem 19 · Problem 20 Round 2: Problems 50-70 Problem 51 · Problem 52 · Problem 53 · Problem 54 · Problem 55 · Problem 56 · Problem 57 · Problem 58 · ... · Problem 61 · Problem 62 · Problem 63 · Problem 64 · Problem 65 · Problem 66 · Problem 67 Round 3: Problems 100-110 Problem 100 · Problem 101 · Problem 102 Round 4: Problems 500-510 Problem 500 · Problem 501 * · Problem 502 * Round 5: Problems 150-160 Round 6: Problems 250-260 Round 7: Problems 170-180
|