#Lutece0317. Simple Editor
Simple Editor
Migrated from Lutece 317 Simple Editor
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
In our daily life, word processing is a very important kind of work. In order to complete the documents quickly, Fish had written a simple document editor.
But the document editor is too simple to do kinds of processing work. It just supports only three kinds of operations:
- We can move the cursor left or right.
- We can insert a character after the cursor. After inserting the character , the cursor move to the right of immediately.
- We can delete the character after the cursor, and the cursor isn't move.
Now give you some operation commands, Fish want to know the last sequence of characters.
Input
There is only one integer () on the first line, which indicates the number of test cases.
In the first line of each test case, there is one integer () indicates the number of commands in this case. Then n lines followed, each line represents a command having one of those formats:
Left
: the cursor moves one position to the left, if the cursor is on the leftmost position originally, ignore it.Right
: the cursor moves one position to the right, if the cursor is on the rightmost position oritinally, ignore it.Insert X
: insert the character after the cursor.Delete
: delete the charactor on the right of the cursor, if there isn't any character on the right of the cursor, ignore it.
Output
For each test case, output one line. First ,output Case #C:
, where is the number of test case, from to . Then, output the last sequence of characters finally.
Samples
2
7
Insert e
Left
Insert H
Right
Insert l
Insert l
Insert o
13
Insert W
Insert e
Left
Delete
Insert r
Insert l
Insert d
Insert !
Left
Left
Left
Left
Insert o
Case #1: Hello
Case #2: World!
Resources
Fish