Problem Description
You are given a 2D integer array classes, where classes[i] = [pass_i, total_i], indicating that in the i-th class, pass_i students will pass the exam out of total_i students. You also have extraStudents, which are guaranteed to pass any class they are assigned to. The goal is to assign these extra students to maximize the average pass ratio across all classes.
Key Insights
- The pass ratio of a class is defined as the number of students passing divided by the total number of students in that class.
- Assigning extra students to classes with a lower current pass ratio can yield a higher increase in overall average pass ratio.
- A greedy approach using a max-heap can efficiently determine which class to assign the next extra student to based on the potential increase in pass ratio.
Space and Time Complexity
Time Complexity: O(n log n), where n is the number of classes. This accounts for sorting the classes and using a priority queue (heap) for managing class selection. Space Complexity: O(n), primarily for storing the classes and the heap.
Solution
To solve the problem, we will:
- Calculate the initial pass ratio for each class.
- Use a max-heap (priority queue) to keep track of the classes based on the potential increase in their pass ratios when an extra student is added.
- For each extra student, we will pop the class with the highest potential increase from the heap, assign the student, and push the updated class back into the heap.
- Finally, compute the average pass ratio after all students have been assigned.
Data Structures Used
- A max-heap (priority queue) is used to efficiently retrieve and update the class with the highest potential increase in pass ratio.