---恢复内容开始---
Description
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 Input
7 15
15 5 3 7 9 14 0
2.5000000000
2 5
2 5
2.0000000000
Hint
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.
解题思路:
这个题目的大意是给定一条路的路灯数及路灯的位置,还有这条路的长度,让我们求这些灯可以照亮这条路的最小半径。我们可以将路灯的位置进行一个从小到大的排序。然后通过比较求出两个路灯相隔距离的最大值(直径)。记住还要将第一个路灯与0的距离求出和将最后一个路灯与路最后的位置的距离求出(半径),最然后取出其中半径的最小值。
程序代码:
#include <iostream> using namespace std; int a[100005]; int main() { int n,s=0,w=0,v=0; cin>>n; for(int i=0;i<n;i++) { cin>>a[i]; s=s+a[i]; } for(int u=0;u<n;u++) { v=v+a[u]; if(v==s-v) w++; } if(s) cout<<w<<endl; else cout<<w-1<<endl; return 0; }