-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cake Distribution Problem
63 lines (55 loc) · 1.29 KB
/
Cake Distribution Problem
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
//{ Driver Code Starts
// Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function Template for C++
class Solution{
public:
bool canProvide(int mid,vector<int> &arr,int K){
int person=0,sum=0;
for(int i=0;i<arr.size();i++){
sum+=arr[i];
if(sum>=mid){
person++;
sum=0;
}
}
return person>=K+1;
}
int maxSweetness(vector<int>& sweetness, int N, int K) {
// Write your code here.
int low=INT_MAX,high=0,mid;
for(int i=0;i<N;i++){
low=min(sweetness[i],low);
high+=sweetness[i];
}
int ans=0;
while(low<=high){
mid=(low+high)/2;
if(canProvide(mid,sweetness,K)){
ans=mid;
low=mid+1;
}
else high=mid-1;
}
return ans;
}
};
⅘//{ Driver Code Starts.
int main() {
int t;
cin >> t;
while (t--) {
int n, k;
cin >> n >> k;
vector<int> sweetness(n);
for (int i = 0; i < n; i++) {
cin >> sweetness[i];
}
Solution ob;
int res=ob.maxSweetness(sweetness, n, k);
cout << res << endl;
}
}
// } Driver Code