Solution: Splitting the Pirate Loot

Solution for the 3-Partition Problem.

We'll cover the following...

Solution

Let’s denote v1+v2++viv_1 + v_2 + ··· + v_i as sum(i)(i). Splitting the set of nn items evenly into three parts is possible only if their total value is divisible by three, i.e., sum(n)=3V(n) = 3V, where VV is an integer. Then, we need to partition nn numbers into three parts where the sum of numbers in each part is equal to VV. Instead of partitioning all nn items, let’s try to solve a smaller problem of partitioning the first ii items into parts of value s1,s2,s_1, s_2, and sum(i)s1s2sum(i) − s_1 − s_2. We define split(i,s1,s2)=split(i,s_1,s_2) = true if such partition is possible (and false, otherwise) and note that the pirates can fairly split the loot only if split(n,V,V)=split(n,V,V)= true.

Stop and think:

Given the first five items

36419\boxed{3}\boxed{6}\boxed{4}\boxed{1}\boxed{9}

split(5,4,13)=split(5,4,13) = true.

Find all other values split(5,s1,s2)split(5,s1,s2) equal to true.

Imagine that you have already constructed the binary two-dimensional array split(i1,s1,s2)split(i−1,s_1,s_2) ...