-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpat1057.cpp
More file actions
117 lines (111 loc) · 1.84 KB
/
pat1057.cpp
File metadata and controls
117 lines (111 loc) · 1.84 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#include <stdio.h>
#include <set>
#include <stack>
#include <algorithm>
#include <string.h>
using namespace std;
stack<long long> s;
long long mid;
multiset<long long> up,low;
multiset<long long>::iterator now;
long long peekMedian(){
return mid;
}
void init(){
mid=0;
up.clear();
low.clear();
return;
}
bool push(long long a){
if(s.empty()){
s.push(a);
mid=a;
return true;
}
s.push(a);
if(a>=mid) up.insert(a);
else low.insert(a);
if(up.size()>low.size()+1){
low.insert(mid);
now=up.begin();
mid=*now;
up.erase(now);
}
else if(low.size()>up.size()){
up.insert(mid);
now=low.end();
now--;
mid=*now;
low.erase(now);
}
return true;
}
long long pop(){
long long tmp=s.top();
s.pop();
if(tmp==mid){
if(s.empty()){
mid=0;
return tmp;
}
if(up.size()==low.size()){
now=low.end();
now--;
mid=*now;
low.erase(now);
}
else{
now=up.begin();
mid=*now;
up.erase(now);
}
}
else if(tmp>mid) {now=up.find(tmp);up.erase(now);}
else {now=low.find(tmp);low.erase(now);}
if(up.size()>low.size()+1){
low.insert(mid);
now=up.begin();
mid=*now;
up.erase(now);
}
else if(low.size()>up.size()){
up.insert(mid);
now=low.end();
now--;
mid=*now;
low.erase(now);
}
return tmp;
}
int main(){
int n;
while(scanf("%d",&n)!=EOF){
char command[15];
init();
long long tmp;
while(n){
scanf("%s",command);
if(strcmp(command,"Pop")==0){
if(s.empty())
printf("Invalid\n");
else{
printf("%lld\n",pop());
}
}
if(strcmp(command,"Push")==0){
scanf("%lld",&tmp);
push(tmp);
}
if(strcmp(command,"PeekMedian")==0){
if(s.empty())
printf("Invalid\n");
else{
printf("%lld\n",peekMedian());
}
}
n--;
}
}
return 0;
}