-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAllocate_minimum_pages.cpp
68 lines (50 loc) · 1.31 KB
/
Allocate_minimum_pages.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
#include<bits/stdc++.h>
using namespace std;
class Solution {
public:
int findPages(vector<int> &arr, int k) {
// code here
int n = arr.size();
if(n < k){
return -1;
}
int result = -1;
int low = *max_element(arr.begin(), arr.end());
int high = accumulate(arr.begin(), arr.end(), 0); // 0 is the initial value
if(k == 1){
return high;
}
while(low<=high){
int mid = low + (high - low)/2;
int student = 1;
int sum = 0;
for(int i = 0; i<n; i++){
sum += arr[i];
if(sum > mid){
student++;
sum = arr[i]; //initialize for new student
}
}
if(student > k){
low = mid + 1;
}else{
result = mid;
high = mid - 1;
}
}
return result;
}
};
int main(){
int n;
cin>>n;
vector<int> arr(n);
for(int i = 0; i<n; i++){
cin>>arr[i];
}
int k;
cin>>k;
Solution ob;
cout<<ob.findPages(arr, k)<<endl;
return 0;
}