A14144 | Restore Modulo
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $n$ , $m$ , $c$ , $s$ . $n$ and $m$ must be positive, $s$ non-negative and for $c$ it must be true that $0 \leq c < m$ . The array $a$ of length $n$ is created according to the following rules:
- $a_1 = s \bmod m$ , here $x \bmod y$ denotes remainder of the division of $x$ by $y$ ;
- $a_i = (a_{i-1} + c) \bmod m$ for all $i$ such that $1 < i \le n$ .
For example, if $n = 5$ , $m = 7$ , $c = 4$ , and $s = 10$ , then $a = [3, 0, 4, 1, 5]$ .
Price of such an array is the value of $m$ 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 $n$ , $m$ , $c$ , $s$ that generate this array. If yes, then maximize $m$ .
This generator takes four non-negative numbers $n$ , $m$ , $c$ , $s$ . $n$ and $m$ must be positive, $s$ non-negative and for $c$ it must be true that $0 \leq c < m$ . The array $a$ of length $n$ is created according to the following rules:
- $a_1 = s \bmod m$ , here $x \bmod y$ denotes remainder of the division of $x$ by $y$ ;
- $a_i = (a_{i-1} + c) \bmod m$ for all $i$ such that $1 < i \le n$ .
For example, if $n = 5$ , $m = 7$ , $c = 4$ , and $s = 10$ , then $a = [3, 0, 4, 1, 5]$ .
Price of such an array is the value of $m$ 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 $n$ , $m$ , $c$ , $s$ that generate this array. If yes, then maximize $m$ .
输入格式
The first line contains a single integer $t$ ( $1 \leq t \leq 10^5$ ) — the number of arrays.
The first line of array description contains a single integer $n$ ( $1 \leq n \leq 10^5$ ) — the size of this array.
The second line of array description contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \leq a_i \leq 10^9$ ) — elements of the array.
It is guaranteed that the sum of array sizes does not exceed $10^5$ .
The first line of array description contains a single integer $n$ ( $1 \leq n \leq 10^5$ ) — the size of this array.
The second line of array description contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \leq a_i \leq 10^9$ ) — elements of the array.
It is guaranteed that the sum of array sizes does not exceed $10^5$ .
输出格式
For every array print:
- $-1$ , if there are no such four numbers that generate this array;
- $0$ , if $m$ can be arbitrary large;
- the maximum value $m$ and any appropriate $c$ ( $0 \leq c < m$ ) in other cases.
- $-1$ , if there are no such four numbers that generate this array;
- $0$ , if $m$ can be arbitrary large;
- the maximum value $m$ and any appropriate $c$ ( $0 \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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted