|
||||||||||
Data HandlerTime Limit: 20000/10000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3500 Accepted Submission(s): 887 Problem Description You are in charge of data in a company, so you are called "Data Handler". Different from the data in computer, the data you have are really in huge volume, and each data contains only one integer. All the data are placed in a line from left to right. There are two "hand" to handle the data, call hand "L" and hand "R". Every hand is between two adjacent data or at the end of the data line. In one day, the company gives you many commands to handle these data, so you should finish them one by one. At the beginning, there are N data, and hand "L" and "R" are in some positions. Each command is one the following formats: (1)MoveLeft L/R: it means that you should move the hand "L"/"R" left one data unit; (2)MoveRight L/R: it means that you should move the hand "L"/"R" right one data unit; (3)Insert L X: it means that you should insert the data that contains X at the right of the hand "L"; (4)Insert R X: it means that you should insert the data that contains X at the left of the hand "R"; (5)Delete L: it means that you should delete the one data at the right of the hand "L"; (6)Delete R: it means that you should delete the one data at the left of the hand "R"; (7)Reverse: it means that you should reverse all the data between hand "L" and hand "R". After finish all the commands, you should record all the data from left to right. So please do it. Input The first line contains an integer T(1<=T<=10), the number of test cases. Then T test cases follow. For each test case, the first line contains an integer N(1<=N<=500000), the number of data at the beginning. The second line contains N integers, means the integer in each data, from left to right. The third line contains two integers L and R (1<=L<=R<=N), the positions of hand "L" and hand "R". It means that hand "L" is at the left of the L-th data and hand "R" is at the right of the R-th data. The fourth line contains one integer M(1<=M<=500000), the number of commands. Then M lines follow, each line contains a command in the above format. All the integers in the data will in range [-10000,10000]. It is guaranteed that there are always some data between hand "L" and "R", and if the hand is at the left/right end of the data line, it will not receive the command MoveLeft/MoveRight. Because of large input, please use scanf instead of cin. Output For each test case, output the integers in the data from left to right in one line, separated in a single space. Because of large output, please use printf instead of cout. Sample Input
Sample Output
Source | ||||||||||
|