#P6933. [ICPC 2017 WF] Need for Speed

[ICPC 2017 WF] Need for Speed

题目描述

Sheila is a student and she drives at ypical student car: it is old, slow, rusty, and falling apart. Recently,the needle on the speedometer fell off. She glued it back on, but she might have placed it at the wrong angle. Thus, when the speedometer reads ss,her true speed is s+cs+c, where cc is an unknown constant(possibly negative).

Sheila made a careful record of a recent journey and wants to use this to compute cc . The journey consisted of nn segments. In the ithi^{th} segment she traveled a distance of did_{i} and the speedometer read sis_{i} for the entire segment. This whole journey took time tt . Help Sheila by computing cc .

Note that while Sheila's speedometer might have negative readings, her true speed was greater than zero for each segment of the journey.

输入格式

The first line of input contains two integers n(1n1000)n (1 \le n \le 1 000) , the number of sections in Sheila's journey, and t(1t106),t (1 \le t \le 10^{6}), the total time. This is followed by nn lines, each describing one segment of Sheila's journey. The ithi^{th} of these lines contains two integers di(1di1000)d_{i} (1 \le d_{i} \le 1 000) and si(si1000)s_{i} (|s_{i}| \le 1 000) , the distance and speedometer reading for the ithi^{th} segment of the journey. Time is specified in hours, distance in miles, and speed in miles per hour.

输出格式

Display the constant cc in miles per hour. Your answer should have an absolute or relative error of less than 106.10^{−6}.

3 5
4 -1
4 0
10 3

3.000000000

4 10
5 3
2 2
3 6
3 1

-0.508653377

提示

Time limit: 1 s, Memory limit: 512 MB.

spj provider:

/user/137367