A car moves from point A to point B at speed v meters per second. The action takes place on the X-axis. At the distance d meters from A there are traffic lights. Starting from time 0, for the first g seconds the green light is on, then for the following r seconds the red light is on, then again the green light is on for the g seconds, and so on.
The car can be instantly accelerated from 0 to v and vice versa, can instantly slow down from the v to 0. Consider that it passes the traffic lights at the green light instantly. If the car approaches the traffic lights at the moment when the red light has just turned on, it doesn't have time to pass it. But if it approaches the traffic lights at the moment when the green light has just turned on, it can move. The car leaves point A at the time 0.
What is the minimum time for the car to get from point A to point B without breaking the traffic rules?
Input integers l, d, v, g, r (1 ≤ l, d, v, g, r ≤ 1000, d < l) — the distance between A and B (in meters), the distance from A to the traffic lights, car's speed, the duration of green light and the duration of red light.
solution
if(g*v>d)
ans = l/v // i got it
else
ceil(d/v/g+r)*(g+r)+(l-d)/v // i am not getting Please help
Example->suppose l=5 ,d=4,v=1,g=2 ,r=1
At t=0 car starts from $A $
At t=2 light become red but car is far away from light so no problem keep moving
At t=3 light becomes green again for $2$ sec (till $t=5$)
At t=4 light is green still and we reach at light
Note-> we have cross the traffic light don't worry
At t=5 we reach at point B
But correct ans = 7 which is not minimum where I am doing wrong ?
Above approach was used by a red coder and I am including the his solution link below also.
Please help I am feeling sad I am trying to find the correct logic from 3 days.
Here you people are my last hope.
Problem linkproblem b
Accepted solution link of red coder
Note-> the above accepted solution giving 7 as output But I think it should be 5.So this can't be wrong since codeforces accepted it.