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 nn 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 ii -th person wants as aia_i ( 1ai1091 \le a_i \le 10^9 ).

Each of the carvers can choose an integer pattern xx ( 1x1091 \le x \le 10^9 ) in advance, different carvers can choose different patterns. xx 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 yy for a carver who has chosen pattern xx , it will take xy|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 tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Then follow the descriptions of the test cases.

The first line of a test case contains a single integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of people who will come to the workshop.

The second line of a test case contains nn integers a1,a2,a3,,ana_1, a_2, a_3, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ) — the patterns of toys.

The sum of all nn values over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

Output tt 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 11 , 77 , 99 for preparation.

In the second example, the carvers can choose patterns 33 , 3030 , 6060 for preparation.

In the third example, the carvers can choose patterns 1414 , 5050 , 8585 for preparation.

首页