435. Non-overlapping Intervals
Intuition
Given an array of intervals (i.e.[starti, endi]), return the minimum number of intervals you need to remove to make the rest of the intervals non-overlapping. - We need to sort the array anyway to reduce unnecessay operations!
Approach
- Step 1: Sort the array based on the RHS of each interval as the higher RHS, the more likely, it will contains more intervals
- Step 2:
- Create a
prev
variable to store last valid position - Create a
count
variable to store valid number of intervals
- Create a
- Step 3: Traverse the array, if
intervals[i][0] >= intervals[prev][1]
, update the valid position and numbers, otherwise, move to the next one and perform checking. - Step 4: Calculate the number of overlapping intervals to be removed and return.
Complexity
- Time complexity: \(O(N\log N)\)
- Space complexity: \(O(1)\)