forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cpp
50 lines (43 loc) · 938 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
class MaxStack {
public:
MaxStack() {
}
void push(int x) {
stk.push_back(x);
tm.insert({x, --stk.end()});
}
int pop() {
auto it = --stk.end();
int ans = *it;
auto mit = --tm.upper_bound(ans);
tm.erase(mit);
stk.erase(it);
return ans;
}
int top() {
return stk.back();
}
int peekMax() {
return tm.rbegin()->first;
}
int popMax() {
auto mit = --tm.end();
auto it = mit->second;
int ans = *it;
tm.erase(mit);
stk.erase(it);
return ans;
}
private:
multimap<int, list<int>::iterator> tm;
list<int> stk;
};
/**
* Your MaxStack object will be instantiated and called as such:
* MaxStack* obj = new MaxStack();
* obj->push(x);
* int param_2 = obj->pop();
* int param_3 = obj->top();
* int param_4 = obj->peekMax();
* int param_5 = obj->popMax();
*/