You are given the availability intervals of several individuals for a single day. Each individual's availability is represented as a list of intervals, where each interval is a pair of integers [start, end] corresponding to the start time and end time in minutes since midnight (0 ≤ start < end ≤ 1440).
Your task is to write a function that, given:
finds all possible time slots during the day where a meeting of the given duration can be scheduled such that all individuals are available. Return the results as a list of intervals where each interval is at least as long as the desired meeting duration.
The input consists of:
For example, suppose you have the following availabilities (times in minutes):
And the meeting duration is 30 minutes. The overlapping available slots between both persons are:
Your function should return: [[60, 90], [150, 200], [300, 360]].
Consider optimizing your solution for the case where the input size is very large (for example, thousands of individuals with multiple intervals each). Think about the data structures and algorithms that can help you maintain efficiency.
Happy coding!