forked from kapillamba4/Lightoj-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1212-double-ended-queue.cpp
More file actions
81 lines (63 loc) · 1.36 KB
/
1212-double-ended-queue.cpp
File metadata and controls
81 lines (63 loc) · 1.36 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
#include <bits/stdc++.h>
#define ll long long
#define MAX 100100
using namespace std;
ll arr[100100];
vector <pair <ll, ll> > v;
int main()
{
#ifndef ONLINE_JUDGE
freopen("/home/sameer/Documents/sameer/input.sam", "r", stdin);
#endif
ios_base::sync_with_stdio(false);
ll i, j, k, n, m, t, cont, a, b;
cin >> t;
ll cases = t;
while (t--) {
cin >> n >> m;
deque <ll > dq;
cout << "Case " << cases - t << ":" << endl;
string str;
for (i = 0; i < m; i++) {
cin >> str ;
if (str == "pushLeft") {
cin >> k;
if (dq.size() == n) {
cout << "The queue is full\n";
} else {
dq.push_front(k);
cout << "Pushed in left: " << k << "\n";
}
} else if (str == "pushRight") {
cin >> k;
if (dq.size() == n) {
cout << "The queue is full\n";
} else {
dq.push_back(k);
cout << "Pushed in right: " << k << "\n";
}
} else if (str == "popLeft") {
if (dq.empty()) {
cout << "The queue is empty\n";
}
else {
k = dq.front();
dq.pop_front();
cout << "Popped from left: " << k << endl;
}
} else if (str == "popRight") {
if (dq.empty()) {
cout << "The queue is empty\n";
}
else {
k = dq.back();
dq.pop_back();
cout << "Popped from right: " << k << endl;
}
} else {
cout << "hello-----------------------\n";
}
}
}
return 0;
}