-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAggresiveCows.cpp
58 lines (48 loc) · 1008 Bytes
/
AggresiveCows.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
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
bool isPossible(vector<int> &arr, int n, int c, int minAllowedDistance)
{
int cows = 1, lastStallPos = arr[0];
for (int i = 1; i < n; i++)
{
if (arr[i] - lastStallPos >= minAllowedDistance)
{
cows++;
lastStallPos = arr[i];
}
if (cows == c)
{
return true;
}
}
return false;
}
int getDistance(vector<int> &arr, int n, int c)
{
sort(arr.begin(), arr.end());
int st = 1, end = arr[n - 1] - arr[0];
int ans = -1;
while (st <= end)
{
int mid = st + (end - st) / 2;
if (isPossible(arr, n, c, mid))
{
ans = mid;
st = mid + 1;
}
else
{
end = mid - 1;
}
}
return ans;
}
int main()
{
vector<int> arr = {1, 2, 8, 4, 9};
int n = 5, c = 3;
cout << getDistance(arr, n, c) << endl;
return 0;
}