CF1840D.Wooden Toy Festival
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
In a small town, there is a workshop specializing in woodwork. Since the town is small, only three carvers work there.
Soon, a wooden toy festival is planned in the town. The workshop employees want to prepare for it.
They know that n people will come to the workshop with a request to make a wooden toy. People are different and may want different toys. For simplicity, let's denote the pattern of the toy that the i -th person wants as ai ( 1≤ai≤109 ).
Each of the carvers can choose an integer pattern x ( 1≤x≤109 ) in advance, different carvers can choose different patterns. x is the integer. During the preparation for the festival, the carvers will perfectly work out the technique of making the toy of the chosen pattern, which will allow them to cut it out of wood instantly. To make a toy of pattern y for a carver who has chosen pattern x , it will take ∣x−y∣ time, because the more the toy resembles the one he can make instantly, the faster the carver will cope with the work.
On the day of the festival, when the next person comes to the workshop with a request to make a wooden toy, the carvers can choose who will take on the job. At the same time, the carvers are very skilled people and can work on orders for different people simultaneously.
Since people don't like to wait, the carvers want to choose patterns for preparation in such a way that the maximum waiting time over all people is as small as possible.
Output the best maximum waiting time that the carvers can achieve.
输入格式
The first line of the input contains an integer t ( 1≤t≤104 ) — the number of test cases.
Then follow the descriptions of the test cases.
The first line of a test case contains a single integer n ( 1≤n≤2⋅105 ) — the number of people who will come to the workshop.
The second line of a test case contains n integers a1,a2,a3,…,an ( 1≤ai≤109 ) — the patterns of toys.
The sum of all n values over all test cases does not exceed 2⋅105 .
输出格式
Output t numbers, each of which is the answer to the corresponding test case — the best maximum waiting time that the carvers can achieve.
输入输出样例
输入#1
5 6 1 7 7 9 9 9 6 5 4 2 1 30 60 9 14 19 37 59 1 4 4 98 73 1 2 6 3 10 1 17 15 11
输出#1
0 2 13 0 1
说明/提示
In the first example, the carvers can choose patterns 1 , 7 , 9 for preparation.
In the second example, the carvers can choose patterns 3 , 30 , 60 for preparation.
In the third example, the carvers can choose patterns 14 , 50 , 85 for preparation.