3169. Count Days Without Meetings
3169. Count Days Without Meetings
Description
You are given a positive integer days
representing the total number of days an employee is available for work (starting from day 1). You are also given a 2D array meetings
of size n
where, meetings[i] = [start_i, end_i]
represents the starting and ending days of meeting i
(inclusive).
Return the count of days when the employee is available for work but no meetings are scheduled.
Note: The meetings may overlap.
Example 1:
1 | Input: days = 10, meetings = [[5,7],[1,3],[9,10]] |
Example 2:
1 | Input: days = 5, meetings = [[2,4],[1,3]] |
Example 3:
1 | Input: days = 6, meetings = [[1,6]] |
Constraints:
1 <= days <= 10^9
1 <= meetings.length <= 10^5
meetings[i].length == 2
1 <= meetings[i][0] <= meetings[i][1] <= days
Hints/Notes
- Weekly Contest 400
Solution
Language: C++
1 | class Solution { |