贪心
Alwaysion
more persistent for nothing
个人qq:790693499,欢迎来交流
展开
-
【牛客-Shopee 2019校招-Shopee的零食柜 and 力扣410. 分割数组的最大值】dp+二分贪心(python3))
题目描述 牛客: https://www.nowcoder.com/test/question/a71f3bd890734201986cd1e171807d30?pid=17091533&tid=45079094 力扣: https://leetcode-cn.com/problems/split-array-largest-sum/ 思路题解 https://leetcode-cn.com/problems/split-array-largest-sum/solution/fen-ge-shu-z原创 2021-06-23 15:21:49 · 199 阅读 · 0 评论 -
【力扣406-根据身高重建队列】贪心+模拟(python3)
目录题目描述思路题解 题目描述 https://leetcode-cn.com/problems/queue-reconstruction-by-height/ 思路题解 先进行排序,对第一位降序,第二维升序。 再对其进行模拟,因为长得高的看不见长得矮的,所以先确定高的,同样的身高里面前确定前面需要的人数少的。 class Solution: def reconstructQueue(self, people: List[List[int]]) -> List[List[int]]:原创 2020-11-24 16:00:56 · 201 阅读 · 0 评论