LeetCode 题解工作台
队列中可以看到的人数
有 n 个人排成一个队列, 从左到右 编号为 0 到 n - 1 。给你以一个整数数组 heights ,每个整数 互不相同 , heights[i] 表示第 i 个人的高度。 一个人能 看到 他右边另一个人的条件是这两人之间的所有人都比他们两人 矮 。更正式的,第 i 个人能看到第 j 个人的条件…
3
题型
7
代码语言
3
相关题
当前训练重点
困难 · 栈·状态
答案摘要
我们观察发现,对于第 个人来说,他能看到的人一定是按从左到右高度严格单调递增的。 因此,我们可以倒序遍历数组 ,用一个从栈顶到栈底单调递增的栈 记录已经遍历过的人的高度。
Interview AiBoxInterview AiBox 实时 AI 助手,陪你讲清 栈·状态 题型思路
题目描述
有 n 个人排成一个队列,从左到右 编号为 0 到 n - 1 。给你以一个整数数组 heights ,每个整数 互不相同,heights[i] 表示第 i 个人的高度。
一个人能 看到 他右边另一个人的条件是这两人之间的所有人都比他们两人 矮 。更正式的,第 i 个人能看到第 j 个人的条件是 i < j 且 min(heights[i], heights[j]) > max(heights[i+1], heights[i+2], ..., heights[j-1]) 。
请你返回一个长度为 n 的数组 answer ,其中 answer[i] 是第 i 个人在他右侧队列中能 看到 的 人数 。
示例 1:

输入:heights = [10,6,8,5,11,9] 输出:[3,1,2,1,1,0] 解释: 第 0 个人能看到编号为 1 ,2 和 4 的人。 第 1 个人能看到编号为 2 的人。 第 2 个人能看到编号为 3 和 4 的人。 第 3 个人能看到编号为 4 的人。 第 4 个人能看到编号为 5 的人。 第 5 个人谁也看不到因为他右边没人。
示例 2:
输入:heights = [5,1,2,3,10] 输出:[4,1,1,1,0]
提示:
n == heights.length1 <= n <= 1051 <= heights[i] <= 105heights中所有数 互不相同 。
解题思路
方法一:单调栈
我们观察发现,对于第 个人来说,他能看到的人一定是按从左到右高度严格单调递增的。
因此,我们可以倒序遍历数组 ,用一个从栈顶到栈底单调递增的栈 记录已经遍历过的人的高度。
对于第 个人,如果栈不为空并且栈顶元素小于 ,累加当前第 个人能看到的人数,然后将栈顶元素出栈,直到栈为空或者栈顶元素大于等于 。如果此时栈不为空,说明栈顶元素大于等于 ,那么第 个人能看到的人数还要再加 。
接下来,我们将 入栈,继续遍历下一个人。
遍历结束后,返回答案数组 。
时间复杂度 ,空间复杂度 。其中 是数组 的长度。
相似题目:
class Solution:
def canSeePersonsCount(self, heights: List[int]) -> List[int]:
n = len(heights)
ans = [0] * n
stk = []
for i in range(n - 1, -1, -1):
while stk and stk[-1] < heights[i]:
ans[i] += 1
stk.pop()
if stk:
ans[i] += 1
stk.append(heights[i])
return ans
复杂度分析
| 指标 | 值 |
|---|---|
| 时间 | complexity is O(n) because each person is pushed and popped at most once. Space complexity is O(n) for the stack storing intermediate heights during processing. |
| 空间 | Depends on the final approach |
面试官常问的追问
外企场景- question_mark
Consider edge cases where tallest person is at the end of the queue.
- question_mark
Ask about naive O(n^2) approach versus stack optimization.
- question_mark
Probe how stack state helps count visible people efficiently.
常见陷阱
外企场景- error
Forgetting to count the first taller person after popping shorter ones.
- error
Confusing index order when iterating from right to left.
- error
Failing to maintain monotonic stack leading to incorrect visibility counts.
进阶变体
外企场景- arrow_right_alt
Compute visible people to the left using similar stack logic.
- arrow_right_alt
Handle queues with non-unique heights using modified comparison rules.
- arrow_right_alt
Extend to 2D grids to count visible people in multiple directions.