Merge overlapping interval
Given 'N' number of intervals, where each interval contains two integers denoting the boundaries of the interval. The task is to merge all the overlapping intervals and return the list of merged intervals sorted in ascending order.
Two intervals will be considered to be overlapping if the starting integer of one interval is less than or equal to the finishing integer of another interval, and greater than or equal to the starting integer of that interval.
Example:
for the given 5 intervals - [1,4], [3,5], [6,8], [10,12], [8,9].
Since intervals [1,4] and [3,5] overlap with each other, we will merge them into a single interval as [1,5].
Similarly [6,8] and [8,9] overlaps, we merge them into [6,9].
Interval [10,12] does not overlap with any interval.
Final List after merging overlapping intervals: [1,5], [6,9], [10,12]
Input Format:
The first line of input contains an integer 'T' representing the number of the test case. Then the test case follows.
The first line of each test case contains an integer 'N', the number of intervals.
The second line of the test case contains 'N' integers, the starting integer of 'N' intervals.
The third line of the test case contains 'N' integers, the ending integer of 'N' intervals.
Output Format:
For each test case, print 'S' lines, each contains two single space-separated integers 'a', and 'b', where 'S' is the size of the merged array of intervals, 'a' is the start time of an interval and 'b' is the end time of the same interval.
Print the output of each test case in a separate line.
Constraints:
1 <= T <= 100
1 <= N <= 1000
0 <= start, finish <= 10^9
Where 'T' denotes the number of test cases, 'N' denotes the number of intervals respectively, 'start' and 'finish' are the starting and finishing times for intervals.
Time Limit: 1 sec
CodingNinjas
author
2y
1. First I gave him the brute force solution
2. Interviewer asked me to optimize the solution.
3. I gave him the optimized solution and interviewer was happy.
CodingNinjas
author
2y
Brute Force
- We are given the function MERGEINTERVALS(), which takes a 2D vector representing the vector of intervals and returns another 2D vector which is the vector of merged intervals.
- We create anot...read more
CodingNinjas
author
2y
Sorting Intervals
Our last approach was very simple and easy, but it’s time complexity was high. We can improve our solution by sorting the intervals and then combine them
- We are given the function MERG...read more
Add answer anonymously...
Top MongoDB Data Engineer-Intern interview questions & answers
Top HR questions asked in MongoDB Data Engineer-Intern
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app