1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00

go: add «1105. Filling Bookcase Shelves»

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-07-31 10:49:26 +02:00
parent 95c58e0ea3
commit adcfcd4d91
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,23 @@
package main
func minHeightShelves(books [][]int, shelfWidth int) int {
dp := make([]int, len(books)+1)
dp[0], dp[1] = 0, books[0][1]
for i := 2; i <= len(books); i++ {
remainingWidth := shelfWidth - books[i-1][0]
maxHeight := books[i-1][1]
dp[i] = books[i-1][1] + dp[i-1]
for j := i - 1; j > 0 && remainingWidth-books[j-1][0] >= 0; j-- {
maxHeight = max(maxHeight, books[j-1][1])
remainingWidth -= books[j-1][0]
dp[i] = min(dp[i], maxHeight+dp[j-1])
}
}
return dp[len(books)]
}