1229. Meeting Scheduler - Detailed Explanation
Problem Statement
Description:
You are given two lists (arrays) of time slots, where each time slot is represented as a pair of integers [start, end]
. These time slots indicate when a person is available. You are also given an integer duration
representing the length of the meeting you want to schedule.
Your task is to find the earliest time slot that works for both people, meaning the overlapping time between their availabilities must be at least duration
long. If such a slot exists, return it as a pair [start, start + duration]
; otherwise, return an empty list.
Example 1:
- Input:
- slots1 =
[[10, 50], [60, 120], [140, 210]]
- slots2 =
[[0, 15], [60, 70]]
- duration =
8
- slots1 =
- Output:
[60, 68]
- Explanation:
The first overlapping slot between the two schedules is between 60 and 70. Since the meeting duration is 8, the earliest valid meeting slot is from 60 to 68.
Example 2:
- Input:
- slots1 =
[[10, 50], [60, 120], [140, 210]]
- slots2 =
[[0, 15], [60, 70]]
- duration =
12
- slots1 =
- Output:
[]
- Explanation:
Although there is an overlap between 60 and 70, its length (10) is less than the required 12, so no valid meeting slot exists.
Constraints:
- The time slots within each list are disjoint and may not be sorted.
- All time slots are in the format
[start, end]
withstart < end
. - The meeting duration is a positive integer.
Hints
-
Hint 1:
The meeting can only happen in an interval where the two schedules overlap. Think about how to compute the intersection of two time intervals. -
Hint 2:
Sorting the time slots based on their start times can make it easier to traverse both schedules simultaneously. -
Hint 3:
Use a two-pointer approach to traverse both lists and check for overlaps. For each pair of slots from the two lists, determine the intersection and check if its length is at leastduration
.
Approach: Two-Pointer Technique After Sorting
Step-by-Step Process
-
Sort Both Lists:
Although the lists may not be initially sorted, sort bothslots1
andslots2
by their start times. This allows you to traverse the schedules in order. -
Initialize Two Pointers:
Use one pointer for each list (let’s call themi
forslots1
andj
forslots2
). -
Find Overlap for Each Pair:
For the current time slotsslot1 = [start1, end1]
andslot2 = [start2, end2]
, compute the intersection:- The start of the overlap is
max(start1, start2)
. - The end of the overlap is
min(end1, end2)
.
If
min(end1, end2) - max(start1, start2) >= duration
, then a valid meeting slot exists. The earliest meeting time will be[max(start1, start2), max(start1, start2) + duration]
. - The start of the overlap is
-
Advance the Pointer:
If there is no valid meeting slot for the current pair, advance the pointer of the interval that ends first (i.e. the one with the smaller end time) because it cannot possibly form an overlapping meeting with any later interval from the other list. -
Return the Result:
If you find a valid overlapping interval, return it immediately. If you finish scanning both lists without finding one, return an empty list.
Why This Works
-
Sorting ensures that you always compare the earliest available time slots first.
-
Using the two-pointer technique allows you to efficiently check overlapping intervals between the two schedules.
-
By advancing the pointer with the earlier end time, you ensure that you are always looking for the next potential overlapping interval.
Code Implementation
Python Code
Java Code
Complexity Analysis
-
Time Complexity:
-
Sorting both lists takes O(m log m + n log n), where m and n are the lengths of
slots1
andslots2
, respectively. -
The two-pointer traversal runs in O(m + n).
-
Overall: O(m log m + n log n) due to the sorting step.
-
-
Space Complexity:
- Sorting in place requires O(1) extra space (ignoring the space needed for the output).
- Overall: O(1).
Step-by-Step Walkthrough
Consider the first example:
- Input:
slots1 =[[10,50], [60,120], [140,210]]
slots2 =[[0,15], [60,70]]
duration =8
-
After Sorting:
- slots1 remains:
[[10,50], [60,120], [140,210]]
- slots2 remains:
[[0,15], [60,70]]
- slots1 remains:
-
Initialization:
- Set pointer
i = 0
(for slots1) andj = 0
(for slots2).
- Set pointer
-
First Iteration:
- Compare slots1[0] =
[10,50]
with slots2[0] =[0,15]
. - Overlap is from
max(10,0)=10
tomin(50,15)=15
→ overlap length =15 - 10 = 5
. - Since 5 < 8, no valid meeting slot.
- Since slots2[0] ends at 15 which is earlier than 50, increment pointer
j
to 1.
- Compare slots1[0] =
-
Second Iteration:
- Compare slots1[0] =
[10,50]
with slots2[1] =[60,70]
. - Overlap is from
max(10,60)=60
tomin(50,70)=50
. - Here, there is no overlap (since 60 > 50).
- Now, since slots1[0] ends at 50 which is earlier than 70, increment pointer
i
to 1.
- Compare slots1[0] =
-
Third Iteration:
- Compare slots1[1] =
[60,120]
with slots2[1] =[60,70]
. - Overlap is from
max(60,60)=60
tomin(120,70)=70
→ overlap length =70 - 60 = 10
. - Since 10 ≥ 8, a valid meeting slot is found.
- The earliest meeting time is
[60, 60 + 8] = [60, 68]
.
- Compare slots1[1] =
-
Return the Result:
- The function returns
[60, 68]
.
- The function returns
Common Mistakes and Edge Cases
-
Not Sorting the Input:
Without sorting, the two-pointer approach will fail because it assumes the time slots are processed in chronological order. -
Wrong Overlap Calculation:
Carefully compute the overlap asmax(start1, start2)
andmin(end1, end2)
. -
No Valid Meeting Slot:
Make sure to return an empty result if no overlapping interval meets the duration requirement. -
Edge Case - No Availability:
If either schedule is empty, return an empty list since no meeting can be scheduled.
Alternative Variations and Related Problems
-
Meeting Room Scheduling:
Similar problems involve merging intervals or scheduling meetings based on multiple calendars. -
Interval Intersection Problems:
Practice with problems that require computing intersections of intervals or merging overlapping intervals.
GET YOUR FREE
Coding Questions Catalog
