forked from Nandinig24/Leetcode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2402
52 lines (51 loc) · 1.47 KB
/
2402
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
49
50
51
52
#define ll long long
#define pi pair<ll,ll>
class Solution {
public:
int mostBooked(int n, vector<vector<int>>& A) {
vector<int> roomcnt(n,0);
set<int> s;
priority_queue<pi,vector<pi>,greater<pi>> q;
sort(A.begin(),A.end());
int m=A.size();
// store available rooms
for(int i=0;i<n;i++){
s.insert(i);
}
for(int i=0;i<m;i++){
ll start=A[i][0];
ll end=A[i][1];
// storing available room in set
while(q.size()>0 && q.top().first<=start){
int room=q.top().second;
q.pop();
s.insert(room);
}
// delaying the current meeting
if(s.size()==0){
pair<ll,ll> p=q.top();
q.pop();
ll dif=end-start;
start=p.first;
end=start+dif;
s.insert(p.second);
}
// lowest number of unsed room available
auto it=s.begin();
roomcnt[*it]++;
// assign meeting to lowest avaible room
q.push({end,*it});
s.erase(*it);
}
int ans=0;
int maxi=0;
// find room with maximum meetings
for(int i=0;i<n;i++){
if(maxi<roomcnt[i]){
maxi=roomcnt[i];
ans=i;
}
}
return ans;
}
};