#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 kinds of commands as follow:
I X
: insert an integer into this system.R X
: remove integer from this system, if the number of is greater than , just remove one of them, and if does not exist, do nothing.S
: print the number of the integers in the system in a single line.L X
: print the number of the integers which are less than in a single line.W K
: print the (-based) integer in a single line if the integers are sorted by ascending order. if is zero or is larger than the number of the integers in the system, just output .C X
: print the number of in this system.MI
: print the minimum integer of the system in a single line. if the answer does not exist, just output .MA
: print the maximum integer of the system in a single line. if the answer does not exist, just output .
Input
The first line of the input is an integer which stands for the number of test cases. Then test cases follow.
The first line of test case is a number , which is the number of commands. Then n commands follow, and each command is in a single line.
constraints:
- is in the range of .
- is in the range of .
- is in the range of .
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