codeforces Vanya and Lanterns

本文探讨如何通过计算光线覆盖范围,确保整个街道被照亮。通过输入街道长度和路灯位置,找出最小的覆盖距离,使得所有街道段都能被照亮。实例展示了计算过程和结果验证。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Vanya and Lanterns

Vanya walks late at night along a straight street of length l, lit by n lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point l. Then the i-th lantern is at the point ai. The lantern lights all points of the street that are at the distance of at most d from it, where d is some positive number, common for all lanterns.

Vanya wonders: what is the minimum light radius d should the lanterns have to light the whole street?

Input

The first line contains two integers n, l (1 ≤ n ≤ 1000, 1 ≤ l ≤ 109) — the number of lanterns and the length of the street respectively.

The next line contains n integers ai (0 ≤ ai ≤ l). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of the street.

Output

Print the minimum light radius d, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10 - 9.

Sample test(s)
Input
7 15
15 5 3 7 9 14 0
Output
2.5000000000
Input
2 5
2 5
Output
2.0000000000
Note

Consider the second sample. At d = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.


#include <algorithm>
#include <iomanip>
#define max(x,y) (x)>(y)?(x):(y);
using namespace std;

int a[1100];

int main()
{
    int n ,l,i;
    double d,len1,len2,len3,len4,len5;
    while(cin >> n && n)
    {
        cin >> l;
        len3 = 0.000000000;
        for (i = 0; i < n; i++)
        {
            cin >> a[i];
        }
        sort(a,a+n);
        len1 = a[0]*1.000000000;
        //求所有相邻2盏灯的最大距离的一半
        for (i = 1; i < n; i++)
        {
            if (a[i] == a[i-1])//跳过位置相同的灯
            {
                continue;
            }
            len2 = (a[i] -a[i-1])*1.00000000/2;
            if (len2 > len3)
            {
                len3 = len2;
            }
        }
        if (a[n-1]!=l)//如果灯不在街尾
        {
            len5 = (l - a[n-1])*1.00000000;
            len4 = max(len3,len5);
        }
        else
        {
            len4 = len3;
        }
        d = max(len4,len1);
        cout << setprecision(10)<< fixed << d << endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值