[1051] 高度检查器
- GitHub
- http://leetcode.xuezhisd.top/post/d758757.html
- https://leetcode.com/problems/height-checker
- https://leetcode-cn.com/problems/height-checker
题目描述
学校在拍年度纪念照时,一般要求学生按照 非递减 的高度顺序排列。
请你返回能让所有学生以 非递减 高度排列的最小必要移动人数。
示例:
输入:heights = [1,1,4,2,1,3] 输出:3
提示:
1 <= heights.length <= 100
1 <= heights[i] <= 100
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |