Given arrival and departure times of all trains that reach a railway station. Find the minimum number of platforms required for the railway station so that no train is kept waiting. Consider that all the trains arrive on the same day and leave on the same day. Arrival and departure time can never be the same for a train but we can have arrival time of one train equal to departure time of the other.
Example 1:
Input: N = 6
arr[] = [0900 0940 0950 1100 1500 1800]
dep[] = [0910 1200 1120 1130 1900 2000]
Output: 3
Explanation:
Minimum 3 platforms are required to
safely arrive and depart all trains.
Example 2:
Input: N = 3
arr[] = [0900 1100 1235]
dep[] = [1000 1200 1240]
Output: 1
Explanation: Only 1 platform is required to
safely manage the arrival and departure
of all trains.
Solution: (Efficient Solution)
Approach:
Sort the arrival and departure time
Check the number of trains arriving at same time