C

Problem description

Oleg the bank client checks share prices every day. There are n share prices he is interested in. Today he observed that each second exactly one of these prices decreases by k rubles (note that each second exactly one price changes, but at different seconds different prices can change). Prices can become negative. Oleg found this process interesting, and he asked Igor the financial analyst, what is the minimum time needed for all n prices to become equal, or it is impossible at all? Igor is busy right now, so he asked you to help Oleg. Can you answer this question?

Input

The first line contains two integers n and k (1 ≤ n ≤ 105, 1 ≤ k ≤ 109) — the number of share prices, and the amount of rubles some price decreases each second.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 109) — the initial prices.

Output

Print the only line containing the minimum number of seconds needed for prices to become equal, of «-1» if it is impossible.

Examples

Input

3 3
12 9 15

Output

3

Input

2 2
10 9

Output

-1

Input

4 1
1 1000000000 1000000000 1000000000

Output

2999999997

Note

Consider the first example.

Suppose the third price decreases in the first second and become equal 12 rubles, then the first price decreases and becomes equal 9 rubles, and in the third second the third price decreases again and becomes equal 9 rubles. In this case all prices become equal 9 rubles in 3 seconds.

There could be other possibilities, but this minimizes the time needed for all prices to become equal. Thus the answer is 3.

In the second example we can notice that parity of first and second price is different and never changes within described process. Thus prices never can become equal.

In the third example following scenario can take place: firstly, the second price drops, then the third price, and then fourth price. It happens 999999999 times, and, since in one second only one price can drop, the whole process takes 999999999 * 3 = 2999999997 seconds. We can note that this is the minimum possible time.

解题思路:题目的意思就是输入一个n(表示有n个数)和一个公差k,其中n个数中最小值为minval,要求除最小值外,其他数按k值递减,如果刚好都递减到最小值(此时n个数都为minval),则输出递减的总次数,否则输出-1。做法:每个数先减去最小值,查看剩下的值是否为k的倍数,如果是累加其递减次数,否则就break,输出-1,水过。

AC代码:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 const int INF = 1e9;
 4 int n,k,s[100005],minval=INF;bool flag=false;long long tims=0;//注意类型是long long,避免数据溢出
 5 int main(){
 6     cin>>n>>k;
 7     for(int i=0;i<n;++i){cin>>s[i];minval=min(minval,s[i]);}
 8     for(int i=0;i<n;++i){
 9         s[i]-=minval;
10         if(s[i]%k){flag=true;break;}
11         else tims+=s[i]/k;
12     }
13     if(flag)cout<<"-1"<<endl;
14     else cout<<tims<<endl;
15     return 0;
16 }
原文地址:https://www.cnblogs.com/acgoto/p/9147503.html