Given arrival and departure times of all trains that reach a railway station, the task is to find the minimum number of platforms required for the railway station so that no train waits.
We are given two arrays which represent arrival and departure times of trains that stop.
Examples:
Input: arr[] = {9:00, 9:40, 9:50, 11:00, 15:00, 18:00}
dep[] = {9:10, 12:00, 11:20, 11:30, 19:00, 20:00}
Output: 3
Explantion: There are at-most three trains at a time (time between 11:00 to 11:20)Input: arr[] = {9:00, 9:40}
dep[] = {9:10, 12:00}
Output: 1
Explantion: Only one platform is needed.
Naive Solution:
- Approach: The idea is to take every interval one by one and find the number of intervals that overlap with it. Keep track of the maximum number of intervals that overlap with an interval. Finally, return the maximum value.
-
Algorithm:
- Run two nested loops the outer loop from start to end and inner loop from i+1 to end.
- For every iteration of outer loop find the count of intervals that intersect with the current interval.
- Update the answer with maximum count of overlap in each iteration of outer loop.
- Print the answer.
-
Implementation:
// Program to find minimum number of platforms// required on a railway station#include <algorithm>#include <iostream>usingnamespacestd;// Returns minimum number of platforms reqquiredintfindPlatform(intarr[],intdep[],intn){// plat_needed indicates number of platforms// needed at a timeintplat_needed = 1, result = 1;inti = 1, j = 0;// run a nested loop to find overlapfor(inti = 0; i < n; i++) {// minimum platformplat_needed = 1;for(intj = i + 1; j < n; j++) {// check for overlapif((arr[i] >= arr[j] && arr[i] <= dep[j]) ||(arr[j] >= arr[i] && arr[j] <= dep[i]))plat_needed++;}// update resultresult = max(result, plat_needed);}returnresult;}// Driver program to test methods of graph classintmain(){intarr[] = { 900, 940, 950, 1100, 1500, 1800 };intdep[] = { 910, 1200, 1120, 1130, 1900, 2000 };intn =sizeof(arr) /sizeof(arr[0]);cout <<"Minimum Number of Platforms Required = "<< findPlatform(arr, dep, n);return0;}chevron_rightfilter_noneOutput:
Minimum Number of Platforms Required = 3
-
Complexity Analysis:
- Time Complexity: O(n^2).
Two nested loops traverse the array, so the time complexity is O(n^2). - Space Complexity: O(1).
As no extra space is required.
- Time Complexity: O(n^2).
Efficient Solution:
- Approach: The idea is to consider all events in sorted order. Once the events are in sorted order, trace the number of trains at any time keeping track of trains that have arrived, but not departed.
For example consider the above example.
arr[] = {9:00, 9:40, 9:50, 11:00, 15:00, 18:00} dep[] = {9:10, 12:00, 11:20, 11:30, 19:00, 20:00} All events are sorted by time. Total platforms at any time can be obtained by subtracting total departures from total arrivals by that time. Time Event Type Total Platforms Needed at this Time 9:00 Arrival 1 9:10 Departure 0 9:40 Arrival 1 9:50 Arrival 2 11:00 Arrival 3 11:20 Departure 2 11:30 Departure 1 12:00 Departure 0 15:00 Arrival 1 18:00 Arrival 2 19:00 Departure 1 20:00 Departure 0 Minimum Platforms needed on railway station = Maximum platforms needed at any time = 3Note: This approach assumes that trains are arriving and departing on the same date.
-
Algorithm:
- Sort the arrival and departure time of trains.
- Create two pointers i=0, and j=0 and a variable to store ans and current count plat
- Run a loop while i<n and j<n and compare the ith element of arrival array and jth element of departure array.
- if the arrival time is less than or equal to departure then one more platform is needed so increase the count, i.e. plat++ and increment i
- Else if the arrival time greater than departure then one less platform is needed so decrease the count, i.e. plat++ and increment j
- Update the ans, i.e ans = max(ans, plat).
-
Implementation: This doesn’t create a single sorted list of all events, rather it individually sorts arr[] and dep[] arrays, and then uses merge process of merge sort to process them together as a single sorted array.
C++
// Program to find minimum number of platforms// required on a railway station#include <algorithm>#include <iostream>usingnamespacestd;// Returns minimum number of platforms reqquiredintfindPlatform(intarr[],intdep[],intn){// Sort arrival and departure arrayssort(arr, arr + n);sort(dep, dep + n);// plat_needed indicates number of platforms// needed at a timeintplat_needed = 1, result = 1;inti = 1, j = 0;// Similar to merge in merge sort to process// all events in sorted orderwhile(i < n && j < n) {// If next event in sorted order is arrival,// increment count of platforms neededif(arr[i] <= dep[j]) {plat_needed++;i++;}// Else decrement count of platforms neededelseif(arr[i] > dep[j]) {plat_needed--;j++;}// Update result if neededif(plat_needed > result)result = plat_needed;}returnresult;}// Driver program to test methods of graph classintmain(){intarr[] = { 900, 940, 950, 1100, 1500, 1800 };intdep[] = { 910, 1200, 1120, 1130, 1900, 2000 };intn =sizeof(arr) /sizeof(arr[0]);cout <<"Minimum Number of Platforms Required = "<< findPlatform(arr, dep, n);return0;}chevron_rightfilter_noneJava
// Program to find minimum number of platformsimportjava.util.*;classGFG {// Returns minimum number of platforms reqquiredstaticintfindPlatform(intarr[],intdep[],intn){// Sort arrival and departure arraysArrays.sort(arr);Arrays.sort(dep);// plat_needed indicates number of platforms// needed at a timeintplat_needed =1, result =1;inti =1, j =0;// Similar to merge in merge sort to process// all events in sorted orderwhile(i < n && j < n) {// If next event in sorted order is arrival,// increment count of platforms neededif(arr[i] <= dep[j]) {plat_needed++;i++;}// Else decrement count of platforms neededelseif(arr[i] > dep[j]) {plat_needed--;j++;}// Update result if neededif(plat_needed > result)result = plat_needed;}returnresult;}// Driver program to test methods of graph classpublicstaticvoidmain(String[] args){intarr[] = {900,940,950,1100,1500,1800};intdep[] = {910,1200,1120,1130,1900,2000};intn = arr.length;System.out.println("Minimum Number of Platforms Required = "+ findPlatform(arr, dep, n));}}chevron_rightfilter_nonePython3
# Program to find minimum# number of platforms# required on a railway# station# Returns minimum number# of platforms reqquireddeffindPlatform(arr, dep, n):# Sort arrival and# departure arraysarr.sort()dep.sort()# plat_needed indicates# number of platforms# needed at a timeplat_needed=1result=1i=1j=0# Similar to merge in# merge sort to process# all events in sorted orderwhile(i < nandj < n):# If next event in sorted# order is arrival,# increment count of# platforms neededif(arr[i] <=dep[j]):plat_needed+=1i+=1# Else decrement count# of platforms neededelif(arr[i] > dep[j]):plat_needed-=1j+=1# Update result if neededif(plat_needed > result):result=plat_neededreturnresult# driver codearr=[900,940,950,1100,1500,1800]dep=[910,1200,1120,1130,1900,2000]n=len(arr)print("Minimum Number of Platforms Required = ",findPlatform(arr, dep, n))# This code is contributed# by Anant Agarwal.chevron_rightfilter_noneC#
// C# program to find minimum number// of platformsusingSystem;classGFG {// Returns minimum number of platforms// reqquiredstaticintfindPlatform(int[] arr,int[] dep,intn){// Sort arrival and departure arraysArray.Sort(arr);Array.Sort(dep);// plat_needed indicates number of// platforms needed at a timeintplat_needed = 1, result = 1;inti = 1, j = 0;// Similar to merge in merge sort// to process all events in sorted// orderwhile(i < n && j < n) {// If next event in sorted order// is arrival, increment count// of platforms neededif(arr[i] <= dep[j]) {plat_needed++;i++;}// Else decrement count of// platforms neededelseif(arr[i] > dep[j]) {plat_needed--;j++;}// Update result if neededif(plat_needed > result)result = plat_needed;}returnresult;}// Driver program to test methods of// graph classpublicstaticvoidMain(){int[] arr = { 900, 940, 950, 1100,1500, 1800 };int[] dep = { 910, 1200, 1120, 1130,1900, 2000 };intn = arr.Length;Console.Write("Minimum Number of "+" Platforms Required = "+ findPlatform(arr, dep, n));}}// This code os contributed by nitin mittal.chevron_rightfilter_nonePHP
<?php// PHP Program to find minimum number// of platforms required on a railway// station// Returns minimum number of// platforms reqquiredfunctionfindPlatform($arr,$dep,$n){// Sort arrival and// departure arrayssort($arr);sort($dep);// plat_needed indicates// number of platforms// needed at a time$plat_needed= 1;$result= 1;$i= 1;$j= 0;// Similar to merge in// merge sort to process// all events in sorted orderwhile($i<$nand$j<$n){// If next event in sorted// order is arrival, increment// count of platforms neededif($arr[$i] <=$dep[$j]){$plat_needed++;$i++;}// Else decrement count// of platforms neededelseif($arr[$i] >$dep[$j]){$plat_needed--;$j++;}// Update result if neededif($plat_needed>$result)$result=$plat_needed;}return$result;}// Driver Code$arr=array(900, 940, 950, 1100, 1500, 1800);$dep=array(910, 1200, 1120, 1130, 1900, 2000);$n=count($arr);echo"Minimum Number of Platforms Required = ", findPlatform($arr,$dep,$n);// This code is contributed by anuj_67.?>chevron_rightfilter_none
Output:Minimum Number of Platforms Required = 3
-
Complexity Analysis:
- Time Complexity: O(nlogn).
One traversal O(n) of both the array is needed after sorting O(nlogn), so the time Complexity is O(nlogn). - Space Complexity: O(1).
As no extra space is required.
- Time Complexity: O(nlogn).
Note: The solution mentioned above uses O(n log n) time complexity and O(1) Space Complexity. There is one more approach to the problem which uses O(n) extra space and O(n) time to solve the problem:
Minimum Number of Platforms Required for a Railway/Bus Station | Set 2 (Map-based approach)
This article is contributed by Shivam. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.

