[LeetCode]Filling Bookcase Shelves@Golang

Filling Bookcase Shelves
We have a sequence of books: the i-th book has thickness books[i][0] and height books[i][1].

We want to place these books in order onto bookcase shelves that have total width shelf_width.

We choose some of the books to place on this shelf (such that the sum of their thickness is <= shelf_width), then build another level of 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 again 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

Input: books = [[1,1],[2,3],[2,3],[1,1],[1,1],[1,1],[1,2]], shelf_width = 4
Output: 6
Explanation:
The sum of the heights of the 3 shelves are 1 + 3 + 2 = 6.
Notice that book number 2 does not have to be on the first shelf.

Solution

func minHeightShelves(books [][]int, shelf_width int) int {
    m := len(books)
    dp := make([]int, m+1)
    
    for i:=1;i<=m;i++ {
        dp[i] = 1000000
        k := 1
        w, h := books[i-k][0], books[i-k][1]
        for w<= shelf_width {
            dp[i] = min(dp[i], dp[i-k]+h)
            k++
            if i-k<0{
                break
            }
            w += books[i-k][0]
            h = max(h, books[i-k][1])
        }
    }
    return dp[m]
}

func max(a,b int)int{
    if a>b{
        return a
    }
    return b
}

func min(a,b int)int{
    if a<b{
        return a
    }
    return b
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章