-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path022. minimum platforms problem.cpp
48 lines (44 loc) · 1.44 KB
/
022. minimum platforms problem.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Minimum Platforms - GeeksForGeeks
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.
At any given instance of time, same platform can not be used for both departure of a train and arrival of another train.
In such cases, we need different platforms.
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.
Code:
class Solution {
public:
//Function to find the minimum number of platforms required at the
//railway station such that no train waits.
int findPlatform(int arr[], int dep[], int n)
{
// Your code here
sort(arr, arr + n);
sort(dep, dep + n);
int platform = 1;
int i = 1;
int j = 0;
int ans = 1;
while(i < n && j < n) {
if(arr[i] <= dep[j]) {
platform++;
i++;
}
else if(arr[i] > dep[j]) {
platform--;
j++;
}
if(platform >= ans)
ans = platform;
}
return ans;
}
};