Interested in Skiing

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

Kotori is interested in skiing. The skiing field is an infinite strip going along yy-axis on the 2-dimensional plane where all points (x,y)(x, y) in the field satisfies mxm-m \le x \le m. When skiing, Kotori cannot move out of the field, which means that the absolute value of his xx-coordinate should always be no more than mm. There are also nn segments on the ground which are the obstacles and Kotori cannot move across the obstacles either.

Kotori will start skiing from (0,1010101010)(0, -10^{10^{10^{10^{10}}}}) (you can regard this yy-coordinate as a negative infinity) and moves towards the positive direction of the yy-axis. Her vertical (parallel to the yy-axis) speed is always v_yv\_y which cannot be changed, however she can control her horizontal (parallel to the xx-axis) speed in the interval of \[v_x,v_x]\[-v\_x, v\_x]. The time that Kotori changes her velocity can be neglected.

Your task is to help Kotori calculate the minimum value of v_x\*v\_x^\* that once v_x>v_x\*v\_x>v\_x^\* she can safely ski through the skiing field without running into the obstacles.

입력

There is only one test case in each test file.

The first line of the input contains three positive integers nn, mm and v_yv\_y (1n1001 \le n \le 100, 1m1041 \le m \le 10^4, 1v_y101 \le v\_y \le 10), indicating the number of obstacles, the half width of the skiing field and the vertical speed.

For the following nn lines, the ii-th line contains four integers x_1x\_1, y_1y\_1, x_2x\_2 and y_2y\_2 (mx_1,x_2m-m \le x\_1, x\_2 \le m, 104y_1,y_2104-10^4 \le y\_1, y\_2 \le 10^4, x_1x_2x\_1 \ne x\_2 or y_1y_2y\_1 \ne y\_2) indicating the ii-th obstacle which is a segment connecting point (x_1,y_1)(x\_1, y\_1) and (x_2,y_2)(x\_2, y\_2), both inclusive (that is to say, these two points are also parts of the obstacle and cannot be touched). It's guaranteed that no two obstacles intersect with each other.

출력

Output one line containing one number indicating the minimum value of v_x\*v\_x^\*. If it is impossible for Kotori to pass through the skiing field, output "-1" (without quotes) instead.

Your answer will be considered correct if and only if its absolute or relative error does not exceed 10610^{-6}.