-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBook_Allocation_problem.java
52 lines (52 loc) · 1.45 KB
/
Book_Allocation_problem.java
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
import java.util.Scanner;
public class Book_Allocation_problem {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int test=s.nextInt();
while(test--!=0) {
int n = s.nextInt();
int noofst= s.nextInt();
int pages[] = new int[n];
for (int i = 0; i < n; i++) {
pages[i] = s.nextInt();
}
System.out.println(minpage(pages, noofst));
}
}
public static int minpage(int[] page, int noofst) {
int hi = 0;
for (int i = 0; i < page.length; i++) {
hi += page[i];
}
int lo = 0;
int ans = 0;
while (lo <= hi) {
int mid = (lo + hi) / 2;
if (possible(page, mid, noofst) == true) {
ans = mid;
hi = mid - 1;
} else {
lo = mid + 1;
}
}
return ans;
}
private static boolean possible(int[] page, int mid, int noofst) {
int s = 1;
int reapapge = 0;
int i = 0;
while (i < page.length) {
if (reapapge + page[i] <= mid) {
reapapge += page[i];
i++;
} else {
reapapge = 0;
s++;
}
if (s > noofst) {
return false;
}
}
return true;
}
}