Problem Description
You are given an integer n. There are n rooms numbered from 0 to n - 1. You are given a 2D integer array meetings where meetings[i] = [start_i, end_i] means that a meeting will be held during the half-closed time interval [start_i, end_i). Meetings are allocated to rooms based on availability, and if all rooms are occupied, meetings will be delayed. The goal is to return the number of the room that held the most meetings, with the lowest room number being returned in case of a tie.
Key Insights
- Meetings are scheduled in a half-closed interval format.
- Each meeting takes place in the lowest-numbered available room.
- If no rooms are free, the meeting is delayed but retains its original duration.
- Prioritize earlier-starting meetings when rooms become available.
- Maintain a count of meetings held in each room to identify the room with the most meetings.
Space and Time Complexity
Time Complexity: O(m log m + n), where m is the number of meetings (due to sorting and managing the heap). Space Complexity: O(n), for storing room availability and meeting counts.
Solution
To solve this problem, we utilize a min-heap (priority queue) to manage the availability of rooms based on the end times of meetings. We also maintain a count of meetings held in each room. The algorithm proceeds as follows:
- Sort the meetings by their start times.
- Use a min-heap to track the end times of meetings in each room.
- For each meeting, check if there is a free room. If a room is free, start the meeting there; if not, delay the meeting until a room is available.
- Update the meeting count for the room used.
- After processing all meetings, determine which room held the most meetings, returning the lowest-numbered room in case of a tie.