...
/Solution: Splitting the Pirate Loot
Solution: Splitting the Pirate Loot
Solution for the 3-Partition Problem.
Solution
Let’s denote as sum. Splitting the set of items evenly into three parts is possible only if their total value is divisible by three, i.e., sum, where is an integer. Then, we need to partition numbers into three parts where the sum of numbers in each part is equal to . Instead of partitioning all items, let’s try to solve a smaller problem of partitioning the first items into parts of value and . We define true if such partition is possible (and false, otherwise) and note that the pirates can fairly split the loot only if true.
Stop and think:
Given the first five items
true.
Find all other values equal to true.
Imagine that you have already constructed the binary two-dimensional array ...