Molly, having finished the DMOPC, decides to go to a carnival! Noticing the candy apples on sale, Molly checks a map and finds the distance from the entrance to each stand, as well as which candy apples they're selling. Using the skills she has acquired from the DMOPC, she decides to model the stores as such:
A x k
: The stand now sells candy apple .S x k
: The stand no longer sells candy apple , if it was previously doing so.E x k
: The stand has decided to move locations, and is now a distance of from the entrance. In addition, it is no longer selling any candy apples.Q k
: Print the closest stand that sells candy apple , or-1
if it doesn't exist.
While Molly is perfectly capable of doing this herself, you also want some candy apples, and this might just be the perfect bribe...
Input Specification
Line : Two separated integers, , and , the number of stalls, and number of stalls that sell candy apples.
Line : space separated integers , the distance from the entrance to stall .
Lines : Two space separated integers, and , indicating that stall sells candy apples of flavour .
Line : An integer, , the number of queries Molly has.
Lines : Any valid query, as described above.
Output Specification
For each Q
query, print the answer on a new line.
Constraints
In the case of ties, print the stand with the smaller id.
Sample Input
5 3
1 2 3 4 5
2 1
3 1
5 3
4
Q 1
Q 3
S 2 1
Q 1
Sample Output
2
5
3
Comments
Constraints on k are incorrect, please fix
Now you changed 0 <= a[i] < N. SERIOUSLY ? You guys didn't even comment or notice me the constraints are changed. I don't think this is appropriate. You just changed the constraints secretly and act like nothing had happened. I am very disappointed.
Kirito must now commit harakiri in apology.
The original constraints were , but in haste I messed up the problem statement. I apologise for not posting this earlier.
@r3mark:
Seems like the constraints is wrong ?? Look at my latest submission.
Can stands sell more than one type of apple?
Yes.
Sorry but can you clarify the constraints on k? Is it also < 100?
Yes.