Roy and Alfi reside in two different cities, Roy in city A and Alfi in city B. Roy wishes to meet her in city B.
There are two trains available from city A to city B. Roy is on his way to station A (Railway station of city A). It will take \(T_0\) time (in minutes) for Roy to reach station A. The two trains departs in \(T_1\) and \(T_2\) minutes respectively. Average velocities (in km/hr) of trains are \(V_1\) and \(V_2\) respectively. We know the distance D (in km) between city A and city B. Roy wants to know the minimum time (in minutes) to reach city B, if he chooses train optimally.
If its not possible to reach city B, print "-1" instead (without quotes).
Note: If the minimum time is not integral, round the value to the least integer greater than minimum time.
Input:
First line will contain integer T, number of test cases.
Second line will contain integers ** \(T_0, T_1, T_2, V_1, V_2, D\) ** (their meanings are mentioned in problem statement)
Output:
Print the integral result, minimum time (in minutes) to reach city B in a new line.
Constraints:
\(1 \le T \le 10000\)
\(1 \le T_0,T_1,T_1 \le 1000\)
\( 1 \le V_1,V_2 \le 500\)
\(1 \le D \le 5000\)
Roy reaches station A in 5 minutes, First train departs in 5 minutes and second train departs in 8 minutes, he will be able to catch both of them. But he has to make an optimal choice, which train reaches city B in minimum time. For first train \(\frac{320}{100} =\; 3.2\; hrs\; = 192\) minutes. Total time for first train, \(5+192 = 197\) minutes
For second train \( \frac{320}{90} = 3.555556\; hrs\; = 213.33336\) minutes. Least integer greater than \(213.33336\; is \;214\). Total time for second train \(214+8 = 222\) minutes. So optimal choice is to take first train, and hence the minimum time is \(197\) minutes.
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor
Login to unlock the editorial
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor