304067: CF780H. Intranet of Buses

Memory Limit:256 MB Time Limit:10 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Intranet of Buses

题意翻译

平面上$n$个点,依次连边,记边的总长为$C$。 有$m$个动点,从$1$出发,第$i$个点在时刻$\frac{iC}{m}$出发,它们的速度为$1$(单位长度/时刻) 求最小的距离$s$,使存在某一时刻(点全部出发后),第$i$和$i+1$,第$1$和第$n$个点距离都不大于$s$ 保证给出的多边形中每一条边都与一条坐标轴平行。

题目描述

A new bus route is opened in the city ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF780H/5aac860ae08d1fa2af214332e3d0efb0ba34ce30.png). The route is a closed polygon line in the place, with all segments parallel to one of the axes. $ m $ buses will operate on the route. All buses move in a loop along the route in the same direction with equal constant velocities (stopping times are negligible in this problem). Buses start their movement in the first vertex of the route with equal interval. Suppose that $ T $ is the total time for a single bus to travel the whole loop of the route. Then, the bus 1 starts moving at time 0, the bus 2 starts at time $ T/m $ , the bus 3 starts at time $ 2T/m $ , and so on; finally, the bus $ m $ starts moving at time $ (m-1)T/m $ . Thus, all intervals between pairs of consecutive buses (including the interval between the last and the first bus) are equal. Buses can communicate with each other via wireless transmitters of equal power. If the transmitters have power $ D $ , then only buses within distance $ D $ of each other can communicate. The buses are also equipped with a distributed system of schedule tracking. For all buses to stick to the schedule, the system has to synchronize the necessary data between all buses from time to time. At the moment of synchronization, the bus 1 communicates with the bus 2, the bus 2 — with bus 3, and so on; also, the bus $ m $ communicates with the bus 1. As a research employee, you are tasked with finding the smallest value of $ D $ such that it is possible to find a time moment to perform synchronization once all buses have started moving.

输入输出格式

输入格式


The first line contains two integers $ n $ and $ m $ ( $ 2<=n,m<=10^{5} $ ) — the number of vertices of the polygonal line, and the number of buses respectively. Next $ n $ lines describe the vertices of the route in the traversing order. Each of these lines contains two integers $ x_{i} $ , $ y_{i} $ ( $ -1000<=x_{i},y_{i}<=1000 $ ) — coordinates of respective vertex. It is guaranteed that each leg of the route (including the leg between the last and the first vertex) is paralles to one of the coordinate axes. Moreover, no two subsequent vertices of the route coincide. The route is allowed to have self-intersections, and travel along the same segment multiple times.

输出格式


Print one real number — the answer to the problem. Your answer will be accepted if the relative or the absolute error doesn't exceed $ 10^{-6} $ .

输入输出样例

输入样例 #1

4 2
0 0
0 1
1 1
1 0

输出样例 #1

1.000000000

输入样例 #2

2 2
0 0
1 0

输出样例 #2

0.000000000

说明

Suppose that each bus travel 1 distance unit per second. In the first sample case, in 0.5 seconds buses will be at distance 1, hence we can choose $ D=1 $ . In the second sample case, in 0.5 seconds both buses will be at $ (0.5,0) $ , hence we can choose $ D=0 $ .

Input

题意翻译

平面上$n$个点,依次连边,记边的总长为$C$。 有$m$个动点,从$1$出发,第$i$个点在时刻$\frac{iC}{m}$出发,它们的速度为$1$(单位长度/时刻) 求最小的距离$s$,使存在某一时刻(点全部出发后),第$i$和$i+1$,第$1$和第$n$个点距离都不大于$s$ 保证给出的多边形中每一条边都与一条坐标轴平行。

加入题单

算法标签: