-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.cpp
35 lines (31 loc) · 1022 Bytes
/
Solution.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
class SummaryRanges {
private:
map<int, vector<int>> mp;
public:
SummaryRanges() {
}
void addNum(int val) {
auto r = mp.upper_bound(val);
auto l = r == mp.begin() ? mp.end() : prev(r);
if (l != mp.end() && r != mp.end() && l->second[1] + 1 == val && r->second[0] - 1 == val) {
l->second[1] = r->second[1];
mp.erase(r);
} else if (l != mp.end() && val <= l->second[1] + 1)
l->second[1] = max(val, l->second[1]);
else if (r != mp.end() && val >= r->second[0] - 1)
r->second[0] = min(val, r->second[0]);
else
mp[val] = {val, val};
}
vector<vector<int>> getIntervals() {
vector<vector<int>> res;
for (auto& range : mp) res.push_back(range.second);
return res;
}
};
/**
* Your SummaryRanges object will be instantiated and called as such:
* SummaryRanges* obj = new SummaryRanges();
* obj->addNum(val);
* vector<vector<int>> param_2 = obj->getIntervals();
*/