Dividing Pies

think outside the box


I've got N pizzas, of various types. F friends are coming to my party, and each one should get a piece of pizza. However, they should only get one piece of one pizza, otherwise it'll be messy. A "piece" can be the whole pizza though, that's fine.

My friends are competitive, so if one gets a bigger piece of pizza than the others, everybody gets mad. So they should all get equally sized (but not necessarily equally shaped) pieces, even if we have to waste some of the pizza. I also want a piece, so we have to split it F + 1 ways, and I am also whiny if somebody else gets a bigger piece.

What's the algorithm for determining the largest possible piece size all of us can get given a bunch of pizzas? Each pizza comes with a width w and height h. You get a computer and a programming language to do this. And you'll probably need it :-).

For example, with 28 people and 6 pizzas with [{w: 3, h: 7}, {w: 2, h: 2}, {w: 3, h: 4}, {w: 6, h: 9}, {w: 3, h: 30}, {w: 3, h: 10}], the maximum slice would be 6.923.


Home