Poison

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.
CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.
Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.
Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.
Recursive solution is not preferred, they are rarely used in production code.
- Poison September 04, 2014Greedy soln:
1. Use two max heaps, one for storing all remaining capacities of servers and one for storing tasks.
2. Pop max. task from tasks' heap and subtract max. task length from the max. server. If remaining capacity of server becomes zero, delete the element.
Max heapify both heaps.
3. Do this untill the tasks heap is finished or max. task length is greater than max. server capacity.
Ofcourse, you have to prove this greedy algo. is optimal.
Complexity: O(nlogn + mlogm)