#P6261. [ICPC 2019 WF] Traffic Blights

    ID: 3968 Type: RemoteJudge 2000ms 125MiB Tried: 0 Accepted: 0 Difficulty: 7 Uploaded By: Tags>2019Special JudgeO2优化ICPC

[ICPC 2019 WF] Traffic Blights

题目描述

Cars! Where do they come from? Where do they go? Nobody knows. They appear where roads have been built, as if out of nowhere. Some say that no two cars are alike. Some say that if you look closely, you can see the pale ghosts of miserable humans inside them, trapped forever—particularly in the morning and late afternoon. What scientific eye could frame their fearful symmetry?

Well, yours, hopefully. As part of your government's Urban Traffic Control department, you are trying to write a paper on local traffic congestion. It is too dangerous to observe cars in the wild, of course, but you have been given some data on the traffic lights along your town's Main Street, and you would like to do some theoretical calculations about how well-synchronized they are.

Main Street is set out on a line, with traffic lights placed at various points along it. Each traffic light cycles between red and green with a fixed period, being red for rr seconds, then green for gg seconds, then red for rr seconds, and so on. The values of rr and gg may be different for different traffic lights. At time 00, all the lights have just turned red.

Assume that an "ideal" car mystically appears at the west end of Main Street at a uniformly random real-valued time in the interval [0,2019!][0, 2019!] (where k!k! is the product of the first kk positive integers), driving eastwards at a slow crawl of 11 meter/second until it hits a red light. What is the probability that it will make it through all the lights without being forced to stop? If it does hit a red light, which one is it likely to hit first?

Write a program to answer these questions.

输入格式

The first line of input contains an integer nn (1n5001 \leq n \leq 500), the number of traffic lights. Each of the following nn lines contains three integers xx, rr, and gg describing a traffic light, where xx (1x1051 \leq x \leq 10^5) is the position of the light along Main Street in meters, and rr and gg (0r,g0 \leq r, g and 1r+g1001 \leq r + g \leq 100) are the durations in seconds of the red and green portions of the light's period (so the light is red from time 00 to rr, from time r+gr + g to 2r+g2r + g, and so on).

The west end of Main Street is at position 00, and the lights are listed in order of strictly increasing position.

输出格式

For each of the nn lights, output a line containing the probability that this light will be the first red light an "ideal" car hits. Then output a line containing the probability that an "ideal" car makes it all the way without stopping. Your answers should have an absolute error of at most 10610^-6.

4
1 2 3
6 2 3
10 2 3
16 3 4
0.4
0
0.2
0.171428571429
0.228571428571
6
4 1 5
9 8 7
13 3 5
21 5 7
30 9 1
2019 20 0
0.166666666667
0.466666666667
0.150000000000
0.108333333333
0.091666666667
0.016666666667
0.000000000000

提示

Source: ICPC 2019 World Finals.