-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path978D. Almost Arithmetic Progression.cpp
68 lines (57 loc) · 1.51 KB
/
978D. Almost Arithmetic Progression.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
/*
Idea:
- Brute force.
- The first two elements in any arithmetic progression identify its factor,
so if we try the all possibilities for the first two elements and count
the number of changes each time and take the minimum we will get the
right answer.
*/
#include <bits/stdc++.h>
using namespace std;
int const N = 1e5 + 1;
int n, a[N], b[N];
int check(int chn) {
for(int i = 0; i < n; ++i)
b[i] = a[i];
int fac = b[1] - b[0];
for(int i = 2; i < n; ++i) {
if(b[i] - b[i-1] == fac)
continue;
if((b[i] - 1) - b[i-1] == fac) {
--b[i];
++chn;
continue;
}
if((b[i] + 1) - b[i-1] == fac) {
++b[i];
++chn;
continue;
}
return 1e9;
}
return chn;
}
int main() {
cin >> n;
for(int i = 0; i < n; ++i)
cin >> a[i];
if(n <= 2) {
cout << 0 << endl;
return 0;
}
int res = 1e9;
res = check(0); // .. ..
++a[0], ++a[1];res = min(res, check(2));--a[0], --a[1]; // ++ ++
--a[0], --a[1];res = min(res, check(2));++a[0], ++a[1]; // -- --
++a[0];res = min(res, check(1));--a[0]; // ++ ..
++a[1];res = min(res, check(1));--a[1]; // .. ++
--a[0];res = min(res, check(1));++a[0]; // -- ..
--a[1];res = min(res, check(1));++a[1]; // .. --
--a[0], ++a[1];res = min(res, check(2));++a[0], --a[1]; // -- ++
++a[0], --a[1];res = min(res, check(2));--a[0], ++a[1]; // ++ --
if(res == 1e9)
cout << -1 << endl;
else
cout << res << endl;
return 0;
}