CF1484B.Restore Modulo

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

For the first place at the competition, Alex won many arrays of integers and was assured that these arrays are very expensive. After the award ceremony Alex decided to sell them. There is a rule in arrays pawnshop: you can sell array only if it can be compressed to a generator.

This generator takes four non-negative numbers nn , mm , cc , ss . nn and mm must be positive, ss non-negative and for cc it must be true that 0c<m0 \leq c < m . The array aa of length nn is created according to the following rules:

  • a1=smodma_1 = s \bmod m , here xmodyx \bmod y denotes remainder of the division of xx by yy ;
  • ai=(ai1+c)modma_i = (a_{i-1} + c) \bmod m for all ii such that 1<in1 < i \le n .

For example, if n=5n = 5 , m=7m = 7 , c=4c = 4 , and s=10s = 10 , then a=[3,0,4,1,5]a = [3, 0, 4, 1, 5] .

Price of such an array is the value of mm in this generator.

Alex has a question: how much money he can get for each of the arrays. Please, help him to understand for every array whether there exist four numbers nn , mm , cc , ss that generate this array. If yes, then maximize mm .

输入格式

The first line contains a single integer tt ( 1t1051 \leq t \leq 10^5 ) — the number of arrays.

The first line of array description contains a single integer nn ( 1n1051 \leq n \leq 10^5 ) — the size of this array.

The second line of array description contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 0ai1090 \leq a_i \leq 10^9 ) — elements of the array.

It is guaranteed that the sum of array sizes does not exceed 10510^5 .

输出格式

For every array print:

  • 1-1 , if there are no such four numbers that generate this array;
  • 00 , if mm can be arbitrary large;
  • the maximum value mm and any appropriate cc ( 0c<m0 \leq c < m ) in other cases.

输入输出样例

  • 输入#1

    6
    6
    1 9 17 6 14 3
    3
    4 2 2
    3
    7 3 4
    3
    2 2 4
    5
    0 1000000000 0 1000000000 0
    2
    1 1

    输出#1

    19 8
    -1
    -1
    -1
    2000000000 1000000000
    0
首页