-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path56. Merge Intervals.cpp
38 lines (38 loc) · 1.14 KB
/
56. Merge Intervals.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
/*
9:57 -10:18
WA1: the sort cmp used lot of time.
and wrong index.
*/
class Solution {
public:
static bool cmp(const std::vector<int>& a, const std::vector<int>& b) {
if(a[0]!=b[0])
return a[0]<b[0];
return a[1] < b[1];
}
vector<vector<int>> merge(vector<vector<int>>& intervals) {
sort(intervals.begin(), intervals.end(),cmp);
int last_start = 0x7FFFFFFF, last_end = -1;
vector<int>g;
g.push_back(0x7FFFFFFF);
g.push_back(0x7FFFFFFF);
intervals.push_back(g);
vector<vector<int>> ans;
for(int i=0;i<intervals.size();i++){
int cur_start = intervals[i][0];
int cur_end = intervals[i][1];
if (last_end>=0&&last_end<cur_start) {
vector<int>g;
g.push_back(last_start);
g.push_back(last_end);
ans.push_back(g);
last_start = cur_start;
last_end = cur_end;
} else {
last_start = min(cur_start, last_start);
last_end = max(cur_end, last_end);
}
}
return ans;
}
};