#Lutece0395. Dynamic Query System

Dynamic Query System

Migrated from Lutece 395 Dynamic Query System

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

Dynamic Query System (DQS) is a system can manage integers.

It have 88 kinds of commands as follow:

  1. I X : insert an integer XX into this system.
  2. R X : remove integer XX from this system, if the number of XX is greater than 11 , just remove one of them, and if XX does not exist, do nothing.
  3. S : print the number of the integers in the system in a single line.
  4. L X : print the number of the integers which are less than XX in a single line.
  5. W K : print the KthK_{th}(11-based) integer in a single line if the integers are sorted by ascending order. if KK is zero or KK is larger than the number of the integers in the system, just output 1-1.
  6. C X : print the number of XX in this system.
  7. MI : print the minimum integer of the system in a single line. if the answer does not exist, just output 1-1.
  8. MA : print the maximum integer of the system in a single line. if the answer does not exist, just output 1-1.

Input

The first line of the input is an integer TT which stands for the number of test cases. Then TT test cases follow.

The first line of test case is a number NN, which is the number of commands. Then n commands follow, and each command is in a single line.

constraints:

  • XX is in the range of [0,100000000)[0, 100000000).
  • KK is in the range of [0,100000000)[0, 100000000).
  • NN is in the range of [0,500000][0, 500000].

Output

Simulate the DQS, and the output is the output of DQS.

Samples

1
6
I 1
I 2
S
C 2
MI
MA
2
1
1
2

Resources

10th SCU Programming Contest Final