CF1772D.Absolute Sorting

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an array aa consisting of nn integers. The array is sorted if a1a2ana_1 \le a_2 \le \dots \le a_n .

You want to make the array aa sorted by applying the following operation exactly once:

  • choose an integer xx , then for every i[1,n]i \in [1, n] , replace aia_i by aix|a_i - x| .

Find any value of xx that will make the array sorted, or report that there is no such value.

输入格式

The first line contains one integer tt ( 1t21041 \le t \le 2 \cdot 10^4 ) — the number of test cases.

Each test case consists of two lines. The first line contains one integer nn ( 2n21052 \le n \le 2 \cdot 10^5 ). The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1081 \le a_i \le 10^8 ).

Additional constraint on the input: the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, print any integer xx ( 0x1090 \le x \le 10^9 ) that makes the array sorted. It can be shown that if such an integer xx exists, there is at least one such integer between 00 and 10910^9 .

If there is no such integer, then print 1-1 . If there are multiple suitable values of xx , print any of them.

输入输出样例

  • 输入#1

    8
    5
    5 3 3 3 5
    4
    5 3 4 5
    8
    1 2 3 4 5 6 7 8
    6
    10 5 4 3 2 1
    3
    3 3 1
    3
    42 43 42
    2
    100000000 99999999
    6
    29613295 52036613 75100585 78027446 81409090 73215

    输出#1

    4
    -1
    0
    42
    2
    -1
    100000000
    40741153

说明/提示

In the first test case, after using x=4x = 4 , the array becomes [1,1,1,1,1][1, 1, 1, 1, 1] .

In the third test case, after using x=0x = 0 , the array becomes [1,2,3,4,5,6,7,8][1, 2, 3, 4, 5, 6, 7, 8] .

In the fourth test case, after using x=42x = 42 , the array becomes [32,37,38,39,40,41][32, 37, 38, 39, 40, 41] .

首页