forked from mpfeifer1/Kattis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguessthedatastructure.cpp
100 lines (84 loc) · 1.95 KB
/
guessthedatastructure.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
#include <iostream>
#include <stack>
#include <queue>
using namespace std;
int main() {
int n;
while(cin >> n) {
// Set up initial conditions
priority_queue<int> p;
queue<int> q;
stack<int> s;
bool broken = false;
int count = 0;
bool isP = true;
bool isQ = true;
bool isS = true;
int i, op, num;
for(i = 0; i < n; i++) {
// Take in query
cin >> op >> num;
// Insert
if(op == 1) {
p.push(num);
q.push(num);
s.push(num);
count++;
}
// Remove
else {
if(count == 0) {
cout << "impossible" << endl;
broken = true;
break;
}
if(p.top() != num) {
isP = false;
}
if(q.front() != num) {
isQ = false;
}
if(s.top() != num) {
isS = false;
}
p.pop();
q.pop();
s.pop();
count--;
}
}
if(broken) {
for(i++; i < n; i++) {
cin >> op >> num;
}
continue;
}
int trues = 0;
if(isP) {
trues++;
}
if(isQ) {
trues++;
}
if(isS) {
trues++;
}
if(trues > 1) {
cout << "not sure" << endl;
}
if(trues == 1) {
if(isP) {
cout << "priority queue" << endl;
}
if(isQ) {
cout << "queue" << endl;
}
if(isS) {
cout << "stack" << endl;
}
}
if(trues < 1) {
cout << "impossible" << endl;
}
}
}