#Lutece0297. Temperature

Temperature

Migrated from Lutece 297 Temperature

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

Many people like summer as summer has a lot of advantages, but on the other hand, sometimes summer is also boring. As a student, Tom has complained with summer for many days. Because when having lunch, Tom has a habit of drinking soup. But the temperature of the soup is too high, so Tom need wait for a long time to drink. One day, Tom bought a bowl of soup again, he measured the temperature of the environment is uau_a and the temperature of the soup is u0u_0, after t1t_1 minutes, he measured the soup again and the temperature is u1u_1, but he did not want to measure the temperature all the time until he could drink it. Now Tom asks you for help. Could you help Tom calculate what the temperature of the soup is after t2t_2 minutes and how long he need to wait for until the temperature of the soup becomes u2u_2 according to the data which he had measured? You could assume that the temperature of the environment is invariable.

Input

The first line of the input contains a single integer TT (1T101\leq T\leq 10), the number of test cases. Then TT cases follow.

The first line of each case contains 55 integers, uau_a(0<ua<1000<u_a<100), u0u_0(uau0100u_a\leq u_0\leq 100), u1u_1(uau1u0u_a\leq u_1\leq u_0), t1t_1(0<t10<t_1), nn(1n101\leq n\leq 10), indicating the temperature of the environment uau_a, the original temperature of the soup u0u_0 and the later temperature of the soup u1u_1 after t1t_1 minutes, nn indicates that there are nn options in the following. Each line of the nn lines contains two integers, pp and ss, pp is the kind of the option and can only be 00 or 11. If pp is 00, you should calculate the time Tom need to wait for until the temperature of the soup becomes ss(uasu0u_a\leq s\leq u_0)(it is guaranteed that temperature s is reachable), or you should calculate the temperature of the soup after ss(0<s1000<s\leq 100) minutes from original time t=0t=0.

Output

For the xthx_{th} test case, first print Case x: on a single line.

Then for each option, print a line containing the answer round to two decimal numbers. Print a blank line after each test case.

Samples

1
24 100 90 10 2
0 80
1 20
Case 1:
21.65
81.32

Note

According to Newton’s law of cooling, in a certain temperature range, the rate of change of an object’s temperature is proportional to the temperature difference of the object’s temperature and the environment temperature.

Resources

2010 ACM-ICPC Multi-University Training Contest 13 Host by UESTC