CodeForces - 1477A - Nezzar and Board(数论)

简介: 笔记

Nezzar and Board


题意

对 一个大小为n 的整数集合 进行操作 每次可以选取两个数x,y 得到 2x−y 加入这个集合

问 经过无限次这样的操作之后 能否得到k


思路

1.png

代码

#include<bits/stdc++.h>
#define INF 0x3f3f3f3f
#define mod 1000000007
using namespace std;
typedef  long long LL;
typedef pair<int, int>PII;
inline LL gcd(LL a, LL b) { return b ? gcd(b, a % b) : a; }
const int N = 200010;
LL n, k;
LL a[N];
void solve() {
  cin >> n >> k;
  LL res = 0;
  for (int i = 1; i <= n; ++i) {
    cin >> a[i];
    //res = gcd(res, a[i] - a[i - 1]);
  }
  for (int i = 2; i <= n; ++i)
    res = gcd(res, a[i] - a[i - 1]);
  for (int i = 1; i <= n; ++i) {
    if ((k - a[i]) % res == 0) {
      puts("YES");
      return;
    }
  }
  puts("NO");
}
int main() {
  int t; cin >> t;
  while (t--)
    solve();
  return 0;
}
目录
相关文章
|
存储
华为机试HJ43:迷宫问题
华为机试HJ43:迷宫问题
104 0
|
人工智能
codeforces455——A. Boredom(线性DP)
codeforces455——A. Boredom(线性DP)
126 0
codeforces455——A. Boredom(线性DP)
|
人工智能 vr&ar Perl
codeforces1509 C. The Sports Festival (区间DP)
codeforces1509 C. The Sports Festival (区间DP)
109 0
|
数据安全/隐私保护
Codeforces 417D.Cunning Gena (状压DP)
Codeforces 417D.Cunning Gena (状压DP)
83 0
CodeForces 1195C Basketball Exercise (线性DP)
CodeForces 1195C Basketball Exercise (线性DP)
119 0
HDU-1370,Biorhythms(中国剩余定理)
本题主要就是应用中国剩余定理。