Can the "allocate minimum no of pages" problem be solved using DP?
You are given N number of books. Every ith book has Pi number of pages. You have to allocate books to M number of students. There can be many ways or permutations to do so. In each permutation one of the M students will be allocated the maximum number of pages. Out of all these permutations, the task is to find that particular permutation in which the maximum number of pages allocated to a student is minimum of those in all the other permutations, and print this minimum value.
Each book will be allocated to exactly one student. Each student has to be allocated at least one book.
I know it will be unoptimised and binary search solution is more efficient, but for my understanding can this be solved and if yes what will be the memoization step or temp array and how problem will be broken down in bottom up manner to solve using DP ?