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 standnow sells candy apple
.
S x k
: The standno longer sells candy apple
, if it was previously doing so.
E x k
: The standhas 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.
This comment is hidden due to too much negative feedback. Click here to view it.
Seems like the constraints is wrong ?? Look at my latest submission.
What do we print, the ID of the nearest stall or the distance to the nearest stall? These are the same in the sample I/O.
EDIT: reread the constraints, "print the stand with the smaller ID" clears it up.
Do you mean to stall i?
Can stands sell more than one type of apple?
Yes.
Sorry but can you clarify the constraints on k? Is it also < 100?
Yes.