Water Tank
Mr. Denjiro is a science teacher. Today he has just received a specially ordered water tank that will certainly be useful for his innovative experiments on water flow.
Figure 1: The water tank
The size of the tank is 100cm (Width) * 50cm (Height) * 30cm (Depth) (see Figure 1). For the experiments, he fits several partition boards inside of the tank parallel to the sideboards. The width of each board is equal to the depth of the tank, i.e. 30cm. The height of each board is less than that of the tank, i.e. 50 cm, and differs one another. The boards are so thin that he can neglect the thickness in the experiments.
Figure 2: The front view of the tank
The front view of the tank is shown in Figure 2.
There are several faucets above the tank and he turns them on at the beginning of his experiment. The tank is initially empty. Your mission is to write a computer program to simulate water flow in the tank.
Input
The input consists of multiple data sets. D is the number of the data sets.
DDataSet_1DataSet_2...DataSet_D
The format of each data set (DataSet_d , 1 ≤ d ≤ D) is as follows.
NB_1 H_1B_2 H_2...B_N H_NMF_1 A_1F_2 A_2...F_M A_MLP_1 T_1P_2 T_2...P_L T_L
Each line in the data set contains one or two integers.
N is the number of the boards he sets in the tank. B_i and H_i are the x-position (cm) and the height (cm) of the i^{th }board, where 1 ≤ i ≤ N .
H_i differ from one another. You may assume the following.
0 < N < 10, 0 < B_1 < B_2 < ... < B_N < 100, 0 < H_1 < 50, 0 < H_2 < 50, ..., 0 < H_N < 50.
M is the number of the faucets above the tank. F_j and A_j are the x-position (cm) and the amount of water flow (cm^3/second) of the j^{-th} faucet , where 1 ≤ j ≤ M.
There is no faucet just above any boards. Namely, none of F_j is equal to B_i.
You may assume the following.
0 < M < 10, 0 < F_1 < F_2 < ... < F_M < 100, 0 < A_1 < 100, 0 < A_2 < 100, ... 0 < A_M < 100.
L is the number of observation time and location. P_k is the x-position (cm) of the k^{-th} observation point. T_k is the k^{-th} observation time in seconds from the beginning.
None of P_k is equal to B_i.
You may assume the following.
0 < L < 10, 0 < P_1 < 100, 0 < P_2 < 100, ..., 0 < P_L < 100, 0 < T_1 < 1000000, 0 < T_2 < 1000000, ..., 0 < T_L < 1000000.
Output
For each data set, your program should output L lines each containing one real number which represents the height (cm) of the water level specified by the x-position P_k at the time T_k.
Each answer may not have an error greater than 0.001. As long as this condition is satisfied, you may output any number of digits after the decimal point.
After the water tank is filled to the brim, the water level at any Pk is equal to the height of the tank, that is, 50 cm.