给定一个数列,每一次操作可以使a[i]变成x,y,满足x + y = a[i] + k, 求使所有数字相同的最少操作次数

题目

思路:

给定一个数列,每一次操作可以使a[i]变成x,y,满足x + y = a[i] + k, 求使所有数字相同的最少操作次数_第1张图片

给定一个数列,每一次操作可以使a[i]变成x,y,满足x + y = a[i] + k, 求使所有数字相同的最少操作次数_第2张图片

#include
using namespace std;
#define int long long
const int maxn = 2e5 + 5;
int a[maxn], b[maxn], c[maxn];
void solve(){
	int n, k;
	cin >> n >> k;
	int g = 0;
	for(int i = 1; i <= n; i++){
		cin >> a[i];
		a[i] -= k;
		g = __gcd(g, abs(a[i]));
	}
	sort(a + 1, a + n + 1);
	if(g == 0){
		cout << "0\n";
		return;
	}
	if(a[1] <= 0 && a[n] >= 0){
		cout << "-1\n";
		return;
	}
	int res = 0;
	for(int i = 1; i <= n; i++){
		// cout << a[i] << ' ';
		res += abs(a[i]) / g;
	}
	cout << res - n << '\n';
}
signed main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	int T;
	cin >> T;
	while(T--){
		solve();
	}
}

你可能感兴趣的:(codeforces,算法)