【codeforces 29B】Traffic Lights

B. Traffic Lights
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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

The first line contains 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.
Output

Output a single number — the minimum time that the car needs to get from point A to point B. Your output must have relative or absolute error less than 10 - 6.

Sample test(s)

Input
2 1 3 4 5
Output
0.66666667


Input
5 4 3 1 1
Output
2.33333333


题意:车要经过一段长为L 路,距离起点D的的地方有交通灯,起始为绿灯,经过g秒以后变为红灯,红灯亮r秒以后 变成绿灯然后循环。。。车子可以瞬间达到速度v,也可以瞬间由v变成0.问,车子经过这段路所花的最短时间。

 解题思路:数学题,在纸上画画,分两种情况,一个是,恰好是绿灯,另一种就是红灯的情况。我在一组临界数据wa了,就是当恰好遇到绿灯将要变成红的的时间点不能通过,需要变成另外一种情况。

code:

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <string>
#include <cmath>
#include <map>
using namespace std;
int main()
{
    int  l,d,v;
    int g,r;
    double ans;
    int cnt=0;
    scanf("%d%d%d%d%d",&l,&d,&v,&g,&r);
    double pre=d*1.0/v;
    while(pre>(g+r)){
        pre-=(g+r);
        cnt++;
    }
    if(pre<g)
        printf("%.8lf\n",l*1.0/v);
    else if(pre<=g+r){
        ans=(l-d)*1.0/v+(cnt+1)*(g+r);
        printf("%.8lf\n",ans);
    }

    return 0;
}












评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值