-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFlat_Land_Space_Stations.cpp
64 lines (60 loc) · 1.53 KB
/
Flat_Land_Space_Stations.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
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; }
const ll mod = 1000000007;
const ll inf = 1e18;
#define all(x) begin(x), end(x)
#define loop(i, n) for (int i = 0; i < n; i++)
#define print_array(arr) \
loop(z, sizeof(arr) / sizeof(arr[0])) cout << arr[z] << " "; \
cout << "\n"
#define print_vector(vvv) \
loop(z, vvv.size()) cout << vvv[z] << " "; \
cout << "\n"
#define print_vector_pair(vvv) \
loop(z, vvv.size()) cout << vvv[z].first << " " vvv[z].second << "\n"; \
cout << "\n"
#define fill_my(arr, q) fill(all(arr), q)
void solve()
{
int n, a;
cin >> n;
cin >> a;
// cout << n << " " << a << endl;
int location[a];
int result;
for (int i = 0; i < a; i++)
{
cin >> location[i];
// cout << location[i];
}
int maxdis = 0;
if (n == 1)
{
result = 0;
}
else
{
sort(location, location + a);
for (int i = 0; i < a - 1; i++)
{
maxdis = max((location[i + 1] - location[i])/2, maxdis);
}
}
// maxdis = maxdis / 2;
maxdis = max(maxdis, location[0] - 0);
maxdis = max(maxdis, n - location[a-1]-1);
// cout<<" answer is";
cout << maxdis;
// cout << result << endl;
}
int main()
{
// clock_t time_req;
// time_req = clock();
cin.sync_with_stdio(false);
cin.tie(0);
solve();
return 0;
}