-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1105.java
More file actions
55 lines (55 loc) · 2.35 KB
/
Copy path1105.java
File metadata and controls
55 lines (55 loc) · 2.35 KB
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
// 1105. Filling Bookcase Shelves
// You are given an array books where books[i] = [thicknessi, heighti] indicates the thickness and height of the ith book. You are also given an integer shelfWidth.
//
// We want to place these books in order onto bookcase shelves that have a total width shelfWidth.
//
// We choose some of the books to place on this shelf such that the sum of their thickness is less than or equal to shelfWidth, then build another level of the shelf of the bookcase so that the total height of the bookcase has increased by the maximum height of the books we just put down. We repeat this process until there are no more books to place.
//
// Note that at each step of the above process, the order of the books we place is the same order as the given sequence of books.
//
// For example, if we have an ordered list of 5 books, we might place the first and second book onto the first shelf, the third book on the second shelf, and the fourth and fifth book on the last shelf.
// Return the minimum possible height that the total bookshelf can be after placing shelves in this manner.
//
//
//
// Example 1:
//
//
// Input: books = [[1,1],[2,3],[2,3],[1,1],[1,1],[1,1],[1,2]], shelfWidth = 4
// Output: 6
// Explanation:
// The sum of the heights of the 3 shelves is 1 + 3 + 2 = 6.
// Notice that book number 2 does not have to be on the first shelf.
// Example 2:
//
// Input: books = [[1,3],[2,4],[3,2]], shelfWidth = 6
// Output: 4
//
//
// Constraints:
//
// 1 <= books.length <= 1000
// 1 <= thicknessi <= shelfWidth <= 1000
// 1 <= heighti <= 1000
//
// Runtime 0ms Beats 100.00%of users with Java
// Memory 40.87MB Beats 69.80%of users with Java
class Solution {
public int minHeightShelves(int[][] books, int shelfWidth) {
int[] minHeight = new int[books.length + 1];
for (int i = 1; i <= books.length; i++) {
int width = books[i - 1][0];
int height = books[i - 1][1];
minHeight[i] = minHeight[i - 1] + height;
for (int j = i - 1; j > 0; j--) {
if (width + books[j - 1][0] > shelfWidth) {
break;
}
height = Math.max(height, books[j - 1][1]);
width = width + books[j - 1][0];
minHeight[i] = Math.min(minHeight[i], minHeight[j - 1] + height);
}
}
return minHeight[books.length];
}
}