You have probably heard about the deque (double-ended queue) data structure, which allows for efficient pushing and popping of elements from both the front and back of the queue. Depending on the implementation, it also allows for efficient random access to any index element of the queue as well. Now, we want you to bring this data structure up to the next level, the teque (triple-ended queue)!
The teque supports the following four operations:
The first line contains an integer N (1≤N≤106) denoting the number of operations for the teque. Each of the next N lines contains a string S, denoting one of the above commands, followed by one integer x. If S is a push_back, push_front, or push_middle command, x (1≤x≤109), else for a get command, i (0≤i≤(size of teque)−1). We guarantee that the teque is not empty when any get command is given.
For each get i command, print the value inside the ith index element of the teque in a new line.
The I/O files are large. Please use fast I/O methods.
Sample Input 1 | Sample Output 1 |
---|---|
9 push_back 9 push_front 3 push_middle 5 get 0 get 1 get 2 push_middle 1 get 1 get 2 |
3 5 9 5 1 |