-
Notifications
You must be signed in to change notification settings - Fork 3
/
716.cpp
48 lines (41 loc) · 986 Bytes
/
716.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
class MaxStack {
public:
list<int> st;
map<int, vector<list<int>::iterator>> mp;
MaxStack() {
}
void push(int x) {
st.insert(st.begin(), x);
mp[x].push_back(st.begin());
}
int pop() {
int x = st.front();
st.pop_front();
mp[x].pop_back();
if (mp[x].size() == 0) mp.erase(x);
return x;
}
int top() {
return st.front();
}
int peekMax() {
return mp.rbegin()->first;
}
int popMax() {
int x = mp.rbegin()->first;
auto it = mp.rbegin()->second.back();
st.erase(it);
mp[x].pop_back();
if (mp[x].size() == 0) mp.erase(x);
return x;
}
};
/**
* 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();
*/