-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguessthedatastructure.c
235 lines (182 loc) · 3.37 KB
/
guessthedatastructure.c
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#include "stdio.h"
// Data structures
typedef struct Stack {
int* front;
int backing[1024];
} Stack;
typedef struct Queue {
int* front;
int* back;
int* end;
int backing[1024];
} Queue;
typedef struct PQueue {
int* front;
int backing[1024];
} PQueue;
// Declarations
void Stack_push(Stack*, int);
int Stack_pop(Stack*);
void Queue_push(Queue*, int);
int Queue_pop(Queue*);
void PQueue_push(PQueue*, int);
int PQueue_pop(PQueue*);
// Implementations
void Stack_push(Stack* S, int x) {
*(S->front) = x;
S->front++;
}
int Stack_pop(Stack* S) {
S->front--;
return *(S->front);
}
// So, it seems I implemented a ring buffer
// unecessarily
void Queue_push(Queue* Q, int x) {
*(Q->front) = x;
Q->front++;
if (Q->front == Q->end)
Q->front = Q->backing;
}
int Queue_pop(Queue* Q) {
int ret = *(Q->back);
Q->back++;
if (Q->back == Q->end)
Q->back = Q->backing;
return ret;
}
void PQueue_push(PQueue* Q, int x) {
*(Q->front) = x;
int* cur = Q->front++;
// bubble up
while (cur > Q->backing) {
int* parent = Q->backing + (cur - Q->backing -1)/2;
if (*cur <= *parent)
break;
int tmp = *parent;
*parent = *cur;
*cur = tmp;
cur = parent;
}
}
int PQueue_pop(PQueue* Q) {
int ret = *(Q->backing);
*(Q->backing) = *(--Q->front);
int* cur = Q->backing;
while (1) {
int* lchild = Q->backing + 2*(cur-Q->backing)+1;
int* rchild = lchild+1;
if (lchild >= Q->front)
break;
if (rchild >= Q->front)
rchild = lchild;
int* maxchild = (*lchild > *rchild) ? lchild : rchild;
if (*maxchild < *cur)
break;
int tmp = *maxchild;
*maxchild = *cur;
*cur = tmp;
cur = maxchild;
}
return ret;
}
int test() {
// init
Stack S = {};
S.front = S.backing;
Queue Q = {};
Q.front = Q.backing;
Q.back = Q.backing;
Q.end = Q.backing + 1024;
PQueue P = {};
P.front = P.backing;
// run it
int testing[] = {2, 1};
for (int i=0; i<2; i++) {
int x = testing[i];
printf("%d\n", x);
/*Stack_push(&S, x);*/
Queue_push(&Q, x);
/*PQueue_push(&P, x);*/
}
int* p = P.backing-1;
while (++p < P.front)
printf("%d,", *p);
printf("\n");
for (int i=0; i<2; i++) {
int x = testing[i];
printf("%d\n", Queue_pop(&Q));
}
}
int submission() {
int N;
while ( scanf("%d", &N) >= 0 ) {
char opts = 1 + (1<<1) + (1<<2);
// init
Stack S = {};
S.front = S.backing;
Queue Q = {};
Q.front = Q.backing;
Q.back = Q.backing;
Q.end = Q.backing + 1024;
PQueue P = {};
P.front = P.backing;
for (; N>0; N--) {
int op;
int x;
scanf("%d", &op);
scanf("%d", &x);
switch (op) {
case 1:
Stack_push(&S, x);
Queue_push(&Q, x);
PQueue_push(&P, x);
break;
case 2:
if (opts & 1)
if (Stack_pop(&S) != x)
opts -= 1;
if (opts & (1<<1))
if (Queue_pop(&Q) != x)
opts -= 1<<1;
if (opts & (1<<2))
if (PQueue_pop(&P) != x)
opts -= 1<<2;
break;
}
}
if (!opts) {
printf("impossible\n");
continue;
}
if (opts & 1)
if (opts-1)
goto ambiguous;
else {
printf("stack\n");
continue;
}
if (opts & (1<<1))
if (opts-(1<<1))
goto ambiguous;
else {
printf("queue\n");
continue;
}
if (opts & (1<<2))
if (opts-(1<<2))
goto ambiguous;
else {
printf("priority queue\n");
continue;
}
ambiguous:
printf("not sure\n");
continue;
}
return 0;
}
int main() {
submission();
return 0;
}