Create 253.cpp

master
Kirigaya Kazuto 2022-09-13 08:28:52 +08:00 committed by GitHub
parent 63e2720fe7
commit f822d5f73e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 34 additions and 0 deletions

34
LeetCode-CN/253.cpp Normal file
View File

@ -0,0 +1,34 @@
class Solution {
public:
int minMeetingRooms(vector<vector<int>>& intervals) {
vector<int> starts, ends;
for (auto& vec : intervals) {
starts.push_back(vec[0]);
ends.push_back(vec[1]);
}
sort(starts.begin(), starts.end());
sort(ends.begin(), ends.end());
int needRoom = 0;
int maxRoom = 0;
for (int i = 0, j = 0; i < starts.size() && j < ends.size();) {
if (starts[i] < ends[j]) {
needRoom++;
maxRoom = max(maxRoom, needRoom);
i++;
continue;
}
if (starts[i] > ends[j]) {
needRoom--;
j++;
continue;
}
i++;
j++;
}
return maxRoom;
}
};