测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10933. Mice problem

编程题 普及/提高-

题目描述

Igor the analyst fell asleep on the work and had a strange dream. In the dream his desk was crowded with computer mice, so he bought a mousetrap to catch them.

The desk can be considered as an infinite plane, then the mousetrap is a rectangle which sides are parallel to the axes, and which opposite sides are located in points $(x_{1},y_{1})$ and $(x_{2},y_{2})$ .

Igor wants to catch all mice. Igor has analysed their behavior and discovered that each mouse is moving along a straight line with constant speed, the speed of the $i$ -th mouse is equal to $(v_{i}^{x},v_{i}^{y})$ , that means that the $x$ coordinate of the mouse increases by $v_{i}^{x}$ units per second, while the $y$ coordinates increases by $v_{i}^{y}$ units. The mousetrap is open initially so that the mice are able to move freely on the desk. Igor can close the mousetrap at any moment catching all the mice that are strictly inside the mousetrap.

Igor works a lot, so he is busy in the dream as well, and he asks you to write a program that by given mousetrap's coordinates, the initial coordinates of the mice and their speeds determines the earliest time moment in which he is able to catch all the mice. Please note that Igor can close the mousetrap only once.

输入格式

The first line contains single integer $n$ ( $1<=n<=100000$ ) — the number of computer mice on the desk.

The second line contains four integers $x_{1}$ , $y_{1}$ , $x_{2}$ and $y_{2}$ ( $0<=x_{1}<=x_{2}<=100000$ ), ( $0<=y_{1}<=y_{2}<=100000$ ) — the coordinates of the opposite corners of the mousetrap.

The next $n$ lines contain the information about mice.

The $i$ -th of these lines contains four integers $r_{i}^{x}$ , $r_{i}^{y}$ , $v_{i}^{x}$ and $v_{i}^{y}$ , ( $0<=r_{i}^{x},r_{i}^{y}<=100000$ , $-100000<=v_{i}^{x},v_{i}^{y}<=100000$ ), where $(r_{i}^{x},r_{i}^{y})$ is the initial position of the mouse, and $(v_{i}^{x},v_{i}^{y})$ is its speed.

输出格式

In the only line print minimum possible non-negative number $t$ such that if Igor closes the mousetrap at $t$ seconds from the beginning, then all the mice are strictly inside the mousetrap. If there is no such $t$ , print -1.

Your answer is considered correct if its absolute or relative error doesn't exceed $10^{-6}$ .

Formally, let your answer be $a$ , and the jury's answer be $b$ . Your answer is considered correct if ![](/uploads/acgo/image/cc3e32b3d1d4db08_d66d2b104ab4.jpeg).

输入输出样例

输入 #1
4
7 7 9 8
3 5 7 5
7 5 2 4
3 3 7 8
6 6 3 2
输出 #1
0.57142857142857139685
输入 #2
4
7 7 9 8
0 3 -5 4
5 0 5 4
9 9 -1 -6
10 5 -7 -10
输出 #2
-1

说明/提示

Here is a picture of the first sample

Points A, B, C, D - start mice positions, segments are their paths.

![](/uploads/acgo/image/8e055b2e670cd396_b972132e1a43.jpeg)

Then, at first time when all mice will be in rectangle it will be looks like this:

![](/uploads/acgo/image/24a64aeb7d14fd86_f7e7ba4c62d3.jpeg)

Here is a picture of the second sample

![](/uploads/acgo/image/abc1656803602f6a_0dd3b080694d.jpeg)

Points A, D, B will never enter rectangle.
上一题 去做题 下一题