-
Notifications
You must be signed in to change notification settings - Fork 0
/
C. Insert and Equalize.cpp
88 lines (61 loc) · 1.06 KB
/
C. Insert and Equalize.cpp
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define mod 998244353
bool check(int k, vector<vector<int>> &seg)
{
int ll = 0, rr = 0;
for (auto &e : seg)
{
ll = max(ll - k, e[0]);
rr = min(rr + k, e[1]);
if (ll > rr)
return false;
}
return true;
}
int solve(vector<vector<int>> &seg)
{
int l = -1, r = 1e9;
while (r - l > 1)
{
int mid = (r + l) / 2;
if (check(mid, seg))
{
r = mid;
}
else
{
l = mid;
}
}
return r;
}
int main()
{
int t;
cin >> t;
while (t--) {
int n;cin >> n;
long long a[n], c = 1, b = 0, x, s = 0;
for (int i = 0; i < n; i++)
cin >> a[i];
if (n == 1)
{
cout << 1 << endl;
continue;
}
sort(a, a + n);
for (int i = 0; i < n; i++) b = __gcd(b, a[n - 1] - a[i]);
for (int i=0; i<n; i++) s += (a[n - 1] - a[i]) / b;
x = a[n - 1] - b;
for (int i = n - 2; i >= 0; i--)
{
if (x != a[i])
break;
x -= b;
c++;
}
cout << s + c << endl;
}
}