While many claim that Richmond Hill High School is one of the most peaceful schools they've ever seen, their words aren't necessarily true. Enter mule wars, a devastating battle that has been going on for the past decade, right below the school. The mules run around trying to find jelly beans, shooting each other with deadly STRANGOs, all while trying their best not to get covfefed, the ultimate humiliation.
All of this started when the mule king, Mr. Lookinhere, learned about an escaped prisoner, which he dubbed the 'runaway jelly bean'. The king, being quite skilled in mathematics, decided that in order to maximize their chances of finding the runaway jelly bean, they needed to maximize the number of jelly beans they found. So, he fabricated a contest for his mule peasants to collect and store as many jelly beans as possible. His plan was to then search through all of the captured jelly beans every week. At the end of each week, he collects all of the jelly beans and destroys them.
You, being the supreme admiral general of programming for King Lookinhere, have been tasked to help him determine an optimal group of people to search for the following weeks, before he gives up. In each of the
weeks, the king will provide you
, the number of mules competing, which he numbers from
to
and
, the number of actions that will happen, which includes the mules acquiring jelly beans, and the queries to determine the optimal group to search. Your program must respond to the following commands:
A n x
: Mulefound
jelly beans.
Q x
: Return the number of jelly beans mulehas.
G x
: Return the number of jelly beans the firstmules have.
L x
: Return the number of jelly beans the lastmules have.
Covfefe x
: Muleloses all of its jelly beans, and will be unable to collect any jelly beans given to it for the rest of the week.
Input Specification
The first line of input will contain
, the number of weeks.
For each of the weeks, the first line will contain two space separated integers,
, and
.
The next lines will contain any of the commands specified above, followed by their targets.
For test cases worth 40 of 100 points, the input will only contain commands A
and Q
commands.
Output Specification
Given command Q
, G
, or L
, you must output a single integer representing the number of jelly beans the specified group has in total, among all of its respective members, at the point in time the command is issued at.
Sample Input 1
1
1 2
A 100 1
Q 1
Sample Output 1
100
Explanation for Sample 1
There's one mule competing in the one week of competition. The first command dictates that mule 1 (the only mule in this competition) found 100 jelly beans. The second command asks for the number of jelly beans mule 1 has.
Sample Input 2
1
5 12
A 100 1
A 200 1
Q 1
Covfefe 1
A 500 1
A 375 2
Q 1
Q 2
G 2
A 500 3
G 3
L 3
Sample Output 2
300
0
375
375
875
500
Explanation for Sample 2
There is only one week of competition. There are 5 mules competing.
- Mule
finds
- Mule
finds
- Return value of mule
- Mule
finds covfefed
- Mule
finds
, but it's covfefed, so there's no impact
- Mule
finds
- Return value of mule
covfefed
- Return value of mule
- Return sum of first two mules
- Mule
finds
- Return sum of first three mules
- Return sum of last three mules
Comments
If T>1, then would the commands be looped? So for sample input 2, if T=2 then what would be the output?
Each week can be processed as a separate case. The commands do not loop.
For sample input 2, if
, there would have to be additional lines of input.