-
Notifications
You must be signed in to change notification settings - Fork 0
/
queap.cpp
executable file
·195 lines (179 loc) · 2.85 KB
/
queap.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <limits>
using namespace std;
#define MAX 1000010
typedef struct Node {
int data;
int counter;
struct Node *next;
} node;
class Stack {
public:
Stack();
bool empty();
void push(int);
int pop();
int top();
private:
int size;
node* tops;
};
Stack::Stack() {
tops = NULL;
size = 0;
}
bool Stack::empty() {
return tops==NULL;
}
void Stack::push(int value) {
node *elem = new node;
elem->data = value;
elem->next = tops;
tops = elem;
size++;
}
int Stack::pop() {
int value;
node* tmp = tops;
value = tmp->data;
tops = tmp->next;
delete tmp;
size--;
return value;
}
int Stack::top() {
return tops->data;
}
class Queap {
public:
Queap();
void enqueap(int);
int dequeap();
int min();
private:
Stack *in;
Stack *out;
Stack *Pin;
Stack *Pout;
Stack *cntin;
Stack *cntout;
};
Queap::Queap() {
in = new Stack();
out = new Stack();
Pin = new Stack();
Pout = new Stack();
cntin = new Stack();
cntout = new Stack();
}
void Queap::enqueap(int value) {
in->push(value);
if (Pin->empty()){
Pin->push(value);
cntin->push(1);
}
else{
if (Pin->top() >= value){
Pin->push(value);
cntin->push(1);
}
else{
int tmp = cntin->pop();
tmp++;
cntin->push(tmp);
}
}
}
int Queap::dequeap() {
int p;
int ret;
int counter;
if(out->empty() && in->empty()){
return 0;
}
if(out->empty()){
while(!in->empty()){
p = in->pop();
counter = cntin->pop();
if(!(--counter)){
Pin->pop();
}
else{
cntin->push(counter);
}
out->push(p);
if (Pout->empty()){
Pout->push(p);
cntout->push(1);
}
else{
if (Pout->top() >= p){
Pout->push(p);
cntout->push(1);
}
else{
int tmp = cntout->pop();
tmp++;
cntout->push(tmp);
}
}
}
}
ret = out->pop();
counter = cntout->pop();
if(!(--counter)){
Pout->pop();
}
else{
cntout->push(counter);
}
return ret;
}
int Queap::min() {
if (Pin->empty() && !Pout->empty()){
return Pout->top();
}
else if (!Pin->empty() && Pout->empty()){
return Pin->top();
}
else if (Pin->empty() && Pout->empty()){
return 0;
}
else{
if (Pin->top() < Pout->top())
return Pin->top();
else
return Pout->top();
}
}
int main() {
Queap *queap = new Queap();
int n;
int x;
int ret;
char input;
scanf("%d\n", &n);
for (int i=0; i<n; i++){
scanf("%c", &input);
while (input != 'E' && input != 'D' && input != 'M'){
scanf("%c", &input);
}
switch(input){
case 'E':
scanf("%d\n", &x);
queap->enqueap(x);
break;
case 'D':
ret = queap->dequeap();
printf("%d\n", ret);
break;
case 'M':
ret = queap->min();
printf("%d\n", ret);
break;
}
}
return 0;
}