CF1359F.RC Kaboom Show

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You know, it's hard to conduct a show with lots of participants and spectators at the same place nowadays. Still, you are not giving up on your dream to make a car crash showcase! You decided to replace the real cars with remote controlled ones, call the event "Remote Control Kaboom Show" and stream everything online.

For the preparation you arranged an arena — an infinite 2D-field. You also bought nn remote controlled cars and set them up on the arena. Unfortunately, the cars you bought can only go forward without turning left, right or around. So you additionally put the cars in the direction you want them to go.

To be formal, for each car ii ( 1in1 \le i \le n ) you chose its initial position ( xi,yix_i, y_i ) and a direction vector ( dxi,dyidx_i, dy_i ). Moreover, each car has a constant speed sis_i units per second. So after car ii is launched, it stars moving from ( xi,yix_i, y_i ) in the direction ( dxi,dyidx_i, dy_i ) with constant speed sis_i .

The goal of the show is to create a car collision as fast as possible! You noted that launching every car at the beginning of the show often fails to produce any collisions at all. Thus, you plan to launch the ii -th car at some moment tit_i . You haven't chosen tit_i , that's yet to be decided. Note that it's not necessary for tit_i to be integer and tit_i is allowed to be equal to tjt_j for any i,ji, j .

The show starts at time 00 . The show ends when two cars ii and jj ( iji \ne j ) collide (i. e. come to the same coordinate at the same time). The duration of the show is the time between the start and the end.

What's the fastest crash you can arrange by choosing all tit_i ? If it's possible to arrange a crash then print the shortest possible duration of the show. Otherwise, report that it's impossible.

输入格式

The first line contains a single integer nn ( 1n250001 \le n \le 25000 ) — the number of cars.

Each of the next nn lines contains five integers xix_i , yiy_i , dxidx_i , dyidy_i , sis_i ( 103xi,yi103-10^3 \le x_i, y_i \le 10^3 ; 1dxi1031 \le |dx_i| \le 10^3 ; 1dyi1031 \le |dy_i| \le 10^3 ; 1si1031 \le s_i \le 10^3 ) — the initial position of the ii -th car, its direction vector and its speed, respectively.

It's guaranteed that all cars start at distinct positions (i. e. (xi,yi)(xj,yj)(x_i, y_i) \neq (x_j, y_j) for iji \neq j ).

输出格式

Print the shortest possible duration of the show if it's possible to arrange a crash by choosing all tit_i . Otherwise, print "No show :(".

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

Formally, let your answer be aa , and the jury's answer be bb . Your answer is accepted if and only if abmax(1,b)106\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-6} .

输入输出样例

  • 输入#1

    4
    3 -1 -1 1 2
    2 3 -3 -2 10
    -4 2 1 -2 1
    -2 -2 -1 2 4

    输出#1

    0.585902082262898
  • 输入#2

    2
    -1 1 -1 1 200
    1 1 1 5 200

    输出#2

    No show :(

说明/提示

Here is the picture for the first example:

The fastest cars to crash are cars 22 and 44 . Let's launch car 22 at 00 , car 44 at about 0.0967620.096762 and cars 11 and 33 at arbitrary time. That way cars 22 and 44 will crash into each other at about 0.5859020.585902 . So here's what it looks like at the moment of the collision:

Here's the picture for the second example:

首页