赞
踩
给一个数组和一个 k,数组内有 n 个数,可以进行无数次操作。每次选择两个数 x 和 y,得到一个新的数 2 * x - y,把这个数加入到数组里边。
问:是否可以得到数字 k 。
这里引用百度百科的解释:
裴蜀定理(或贝祖定理)得名于法国数学家艾蒂安·裴蜀,说明了对任何整数a、b和它们的最大公约数d,关于未知数x和y的线性不定方程(称为裴蜀等式):若a,b是整数,且gcd(a,b)=d,那么对于任意的整数x,y,ax+by都一定是d的倍数,特别地,一定存在整数x,y,使ax+by=d成立。
接下来我们再引入 n个整数间的裴蜀定理
设a1, a2, a3 … an 为n个整数,d 是它们的最大公约数,那么存在整数x1 … xn 使得 x1 * a1 + x2 * a2 + … xn * an = d。
特别来说,如果a1 … an互质(他们所有数的gcd = 1),那么存在整数x1 … xn 使得x1 * a1 + x2 * a2 + … xn * an = 1。
( 如果想不明白为什么,就不要想了,应用就OK )
接下来,我们来讨论这个题。
我们可以进行的操作是选择(x ,y)然后得到 2 * x - y,我们对 2 * x - y 进行变形,得到 x + (x - y)。
也就是说看可以得到 num = ax + x1 * (a1 - a2) + x2 * (a2 - a3) + … + xn-1 * ( an-1 - an).
令 g = x1 * (a1 - a2) + x2 * (a2 - a3) + … + xn-1 * ( an-1 - an),那么根据 n个整数间的裴蜀定理 得,对 x1 … xn 进行不同的取值可以使得 g = k * gcd( (a1 - a2),(a2 - a3) … ,( an-1 - an)).
所以我只需要判断 k - a1 是否为 g 的倍数就OK。
这里我们再来解释两个细节问题:
#include <bits/stdc++.h> #include <vector> #include <iostream> #include <cstring> #include <algorithm> #include <queue> #include <map> #include <set> #include <stack> #define ll long long #define chushi(a, b) memset(a, b, sizeof(a)) #define endl "\n" const double eps = 1e-8; const ll INF=0x3f3f3f3f; const ll mod = 1e9 + 7; const int maxn = 2e5 + 5; const int N=1005; using namespace std; ll a[maxn]; int main(){ int ncase; cin >> ncase; while(ncase--){ ll n, k; cin >> n >> k; for(int i = 1; i <= n; i++) cin >> a[i]; ll g = a[2] - a[1]; for(int i = 3; i <= n; i++) g = __gcd(g, a[i] - a[i-1]); if((k - a[1]) % g == 0) cout << "YES" << endl; else cout << "NO" << endl; } return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。