I once read a problem in my Introduction to Algorithms (MIT Press) book which stated.
We have a book with 100 pages and each page has a weight associated with it equal to its page number therefore the weights are i.e. 1,2,3,4,5. These weights represent the difficulty of the page in translation to other language. We have K people assigned the work of translating the pages in another language but we have to divide the work load such that they have almost equal amount of work.
So if we have 5 pages i.e 1,2,3,4,5 and K=3 then k1=2+3=5, k2=1+4=5 and k3=5
Do you have online reference to this problem because I can't find it on google? OR Do you know the name of this algorithm?