Nezzar and Board

Nezzar and Board

Created by LXC on Sun Jul 23 00:30:46 2023

https://codeforces.com/problemset/problem/1477/A

ranting: 1800

tag: constructive algorithms, math, number theory

problem

给出n个数,每次操作,你可以任选两个数a和b,然后新增一个2a-b到其中。

问k能否通过任意次操作得到。

solution

2a-b是b关于a的对称点。在任意此操作后,任意两个点之间的最小距离是原始n个数形成的n-1个段长度的最大公约数g。

k到原始n个数中最小值的距离是g的倍数,那么便可以得到。

code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

#include <bits/stdc++.h>
// #define SINGLE_INPUT
#define ll long long
#define ull unsigned long long
#define N 500005
#define MOD 998244353
using namespace std;

void sol() {
ll n, k;
cin >> n >> k;
vector<ll> a(n);
for (auto& i : a)
cin >> i;
sort(a.begin(), a.end());
ll g = 0;
for (int i = 1; i < n; i++) {
g = gcd(g, a[i] - a[i - 1]);
};
if ((k - a[0]) % g == 0) {
cout << "YES\n";
} else {
cout << "NO\n";
}
}

int main() {
cout << setprecision(15) << fixed;
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
#ifndef SINGLE_INPUT
int t;
cin >> t;
while (t--) {
sol();
}
#else
sol();
#endif
return 0;
}