http://codeforces.com/contest/355/problem/E求n个数(s[i]-k,i=1...n)的最大公约数

来源:互联网 发布:linux调整home分区大小 编辑:程序博客网 时间:2024/05/17 22:39

E. Vasya and Beautiful Arrays
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya's got a birthday coming up and his mom decided to give him an array of positive integers a of length n.

Vasya thinks that an array's beauty is the greatest common divisor of all its elements. His mom, of course, wants to give him as beautiful an array as possible (with largest possible beauty). Unfortunately, the shop has only one array a left. On the plus side, the seller said that he could decrease some numbers in the array (no more than by k for each number).

The seller can obtain array b from array a if the following conditions hold: bi > 0; 0 ≤ ai - bi ≤ k for all 1 ≤ i ≤ n.

Help mom find the maximum possible beauty of the array she will give to Vasya (that seller can obtain).

Input

The first line contains two integers n and k (1 ≤ n ≤ 3·105; 1 ≤ k ≤ 106). The second line contains n integers ai (1 ≤ ai ≤ 106) — array a.

Output

In the single line print a single number — the maximum possible beauty of the resulting array.

Sample test(s)
input
6 13 6 10 12 13 16
output
3
input
5 38 21 52 15 77
output
7
Note

In the first sample we can obtain the array:

3 6 9 12 12 15

In the second sample we can obtain the next array:

7 21 49 14 77


#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#include<string>#include<queue>#include<algorithm>#include<map>#include<iomanip>#define INF 99999999using namespace std;const int MAX=3*100000+10;int s[MAX];int main(){int n,k;while(cin>>n>>k){int gcd=INF,temp;for(int i=0;i<n;++i){scanf("%d",&s[i]);gcd=min(gcd,s[i]);}while(true){//判断gcd是否可以是全部的s[i]-t(t=0~k)的公约数 temp=gcd;for(int i=0;i<n;++i){int num=s[i]/gcd;//最多是gcd的num倍if(num>0 && s[i]-num*gcd<=k)continue;//表示gcd可以是s[i]-t的约数(t=0~k)//gcd将减小,num=s[i]/gcd必须变大才可能满足s[i]-num*gcd<=k,所以由s[i]去确认新的最大可能的gcd gcd=s[i]/(num+1);//s[i]可能可以的最大约数 }if(gcd == temp)break;}//time=n*logn cout<<gcd<<endl;}return 0;}


原创粉丝点击