-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookAllocation.cpp
72 lines (59 loc) · 1.14 KB
/
BookAllocation.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
#include <iostream>
#include <vector>
using namespace std;
bool isValid(vector<int> &arr, int n, int m, int maxAllowedPages)
{
int stu = 1, pages = 0;
for (int i = 0; i < n; i++)
{
if (arr[i] > maxAllowedPages)
{
return false;
}
if (pages + arr[i] <= maxAllowedPages)
{
pages += arr[i];
}
else
{
stu++;
pages = arr[i];
}
}
return stu > m ? false : true;
}
int allocateBooks(vector<int> &arr, int n, int m) // O(logN * n)
{
if (m > n)
{
return -1;
}
int sum = 0;
for (int i = 0; i < n; i++)
{
sum += arr[i];
}
int st = 0, end = sum; // range of possible answers
int ans = -1;
while (st <= end)
{
int mid = st + (end - st) / 2;
if (isValid(arr, n, m, mid))
{
ans = mid;
end = mid - 1;
}
else
{
st = mid + 1;
}
}
return ans;
}
int main()
{
vector<int> arr = {2, 1, 3, 4};
int n = 4, m = 2;
cout << allocateBooks(arr, n, m) << endl;
return 0;
}