RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
R03545

S1. Voronoi Villages

Unrated 레이팅 미적용
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

In the country of Voronoi, there are \(N\) villages, located at distinct points on
a straight road. Each of these villages will be represented by an
integer position along this road.

Each village defines its neighbourhood as all
points along the road which are closer to it than to any other village.
A point which is equally close to two distinct villages \(A\) and \(B\) is in the neighbourhood of \(A\) and also in the neighbourhood of \(B\).

Each neighbourhood has a size which is the
difference between the minimum (leftmost) point in its neighbourhood and
the maximum (rightmost) point in its neighbourhood.

The neighbourhoods of the leftmost and rightmost villages are defined
to be of infinite size, while all other neighbourhoods are finite in
size.

Determine the smallest size of any of the neighbourhoods (with
exactly 1 digit after the decimal point).

제약

\((3 \leq N \leq 100)\)
\((-1\ 000\ 000\ 000 \leq V_i \leq 1\ 000\ 000\ 000)\)

입력 형식

The first line will contain the number \(N\) \((3 \leq N \leq 100)\), the number of villages. On the next \(N\) lines there will be one integer per
line, where the \(i\)th line contains
the integer \(V_i\), the position of
the \(i\)th village \((-1\ 000\ 000\ 000 \leq V_i \leq 1\ 000\ 000\ 000)\). All villages are at distinct positions.

출력 형식

Output the smallest neighbourhood size with exactly one digit after the
decimal point.

예제 1
입력
5
16
0
10
4
15
출력
3.0
설명

The neighbourhoods around \(0\) and \(16\) are infinite. The neighbourhood
around 4 is \(5\) units (\(2\) to the left, and \(3\) to the right). The neighbourhood around
10 is \(5.5\) units (\(3\) to the left and \(2.5\) to the right). The neighbourhood
around 15 is \(3.0\) units (\(2.5\) to the left and \(0.5\) to the right).

문제 정보

생성자가 기록되지 않았습니다.

출처 CCC 2018 Senior

평가 및 의견

S1. Voronoi Villages

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

S1. Voronoi Villages

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8