Re: [闲聊] 每日leetcode

楼主: smart0eddie (smart0eddie)   2024-07-31 13:18:08
2024-07-31
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.
那张图看起来就是 scheduling
看起来大概就是 dynamic programming
可能是要根据目前为止前k本的最佳解决定k+1本是要加一层还是塞进前一层
然后
(打开解答抄)
作者: DJYOMIYAHINA (通通打死)   2024-07-31 13:19:00
早上打开电脑的我:嗯嗯greddy出发 然后WA 就这样了*greedy
楼主: smart0eddie (smart0eddie)   2024-07-31 13:20:00
greedy 可以吗
作者: oin1104 (是oin的说)   2024-07-31 13:21:00
greedy不行我好恨
楼主: smart0eddie (smart0eddie)   2024-07-31 13:21:00
greedy 的话例题第一题的第二本会塞进第一层欸然后很肥的第三本就只能开第二层

Links booklink

Contact Us: admin [ a t ] ucptt.com