I have an integer amount of 'somethings', and I want to divide them into groups, each of an integer amount. Not only that, they must be distributed as evenly as possible.
So, let us say for example I have 9 apples (apples = 9) and I need to separate them into 6 groups (groups = 6). And, let us say that I can't cut an apple, so apples/groups = 1.5 and thus a set of groups [1.5, 1.5, 1.5, 1.5, 1.5, 1.5] will not work. One solution would be [2, 2, 2, 1, 1, 1] or similar. But I need them distributed as evenly as possible, thus the solution must be [2, 1, 2, 1, 2, 1]. Or if it was 7 apples into 5 groups, the solution would be [2, 1, 2, 1, 1].
I am aware that you could find different 'even' distributions, say [1, 2, 1, 2, 1, 2] in the case of 9 apples into 6 groups. But since neither is more evenly distributed, either will do. I simply chose, for the sake of argument, to start with the higher number and alternate as long as possible.
How do I find the solution, given the starting amount and the number of groups I want? [I prefer python, but I understand Java/C/C++, so any will do.]
Background: Since I seem to be getting alot of flack for asking this, here is the reason: I am writing a custom text renderer, and I need to lay out justified text. This means adding and integer amount of pixels to the spacing between words, as evenly as possible. And as fast as possible...