Meetings II
Stark Industry is planning to organize Stark Expo, for which various departments have to organize meetings to check their preparations. Since Stark Tower has limited rooms available for the meeting, Tony decided to allot a room to each meeting so that all the meetings are organized in the least possible conference rooms, and a the moment, only one meeting will happen in one room. So, he asked JARVIS to allot each meeting a room and tell the minimum number of conference rooms to be reserved. But, since JARVIS was busy rendering another Iron Man suit model, he asked you to help.
You are given an array of integers ARR of size N x 2, representing the start and end time for N meetings. Your task is to find the minimum number of rooms required to organize all the meetings.
Note:
1. You can assume that all the meetings will happen on the same day.
2. Also, as soon as a meeting gets over if some other meeting is scheduled to start at that moment, they can then be allocated that room.
Note:
Try to solve the problem in linear time complexity.
For Example:
Consider there are three meetings scheduled with timings:
1pm - 4pm
3pm - 5pm
4pm - 6pm
At the start of time, meeting 1 will be allotted room 1, which will be occupied till 4 pm hence for meeting 2 we’ll have to provide another room. At 4 pm, meeting 3 can be organized in room 1 because by that time, meeting 1 would have ended. Hence we’ll require two rooms for holding all three meetings.
Input format
The first line of input contains an integer 'T' representing the number of the test cases. Then the test case follows.
The first line of each test case contains an integer ‘N’ representing the number of meetings scheduled.
The second line of each test case contains N space-separated integers representing the start time for each meeting.
The third line of each test case contains N space-separated integers representing the end time for each meeting.
Output Format
For each test case, print the minimum number of conference rooms required.
The output of each test case should be printed in a separate line.
Note:
You do not need to print anything; it has already been taken care of. Just implement the given function.
Constraints:
1 <= T <= 100
1 <= N <= 1000
0000 <= INTERVAL[start][end] <= 2359
where 'T' is the number of test cases, 'N' is the number of meetings, and 'INTERVAL[start][end]' represents the starting time and ending time of a meeting.
Time limit: 1 second
AnswerBot
1y
The task is to find the minimum number of conference rooms required to organize all the meetings.
Sort the meetings based on their start time.
Initialize a priority queue to store the end times of the m...read more
CodingNinjas
author
2y
Brute Force
Create ARRIVAL and DEPARTURE arrays from given array INTERVALS.
- Sort ARRIVAL and DEPARTURE arrays.
- Traverse ARRIVAL[i] and DEPARTURE[j] for each 0<= i,j
- If ARRIVAL[i] <= DEPARTURE...read more
CodingNinjas
author
2y
Heaps
- Sort INTERVALS in order of their ARRIVALTIME.
- Create a MINHEAP and iterate through INTERVALS[i][j] for each 0 <= i <= N and check:
- If MINHEAP is empty:
- Increment RESULT by 1 and add INTERVALS[i][1] ...read more
- If MINHEAP is empty:
CodingNinjas
author
2y
EfficientApproach
- Initialize an integer array ROOMS of size 2361 because a clock goes from 0000 to 2359 only.
- Initialize REQUIREDROOMS to 1
- Iterate through INTERVALS[i] for each 0<= i < N and:
- Increment R...read more
Add answer anonymously...
Top Texas Instruments Software Developer Intern interview questions & answers
Popular interview questions of Software Developer Intern
>
Texas Instruments Software Developer Intern Interview Questions
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