1944. Number of Visible People in a Queue
Description
There are n
people standing in a queue, and they numbered from 0
to n - 1
in left to right order. You are given an array heights
of distinct integers where heights[i]
represents the height of the ith
person.
A person can see another person to their right in the queue if everybody in between is shorter than both of them. More formally, the ith
person can see the jth
person if i < j
and min(heights[i], heights[j]) > max(heights[i+1], heights[i+2], ..., heights[j-1])
.
Return an array answer
of length n
where answer[i]
is the number of people the ith
person can see to their right in the queue.
Example 1:
Input: heights = [10,6,8,5,11,9] Output: [3,1,2,1,1,0] Explanation: Person 0 can see person 1, 2, and 4. Person 1 can see person 2. Person 2 can see person 3 and 4. Person 3 can see person 4. Person 4 can see person 5. Person 5 can see no one since nobody is to the right of them.
Example 2:
Input: heights = [5,1,2,3,10] Output: [4,1,1,1,0]
Constraints:
n == heights.length
1 <= n <= 105
1 <= heights[i] <= 105
- All the values of
heights
are unique.
Solutions
Solution 1: Monotonic Stack
We observe that for the \(i\)-th person, the people he can see must be strictly increasing in height from left to right.
Therefore, we can traverse the array \(\textit{heights}\) in reverse order, using a stack \(\textit{stk}\) that is monotonically increasing from top to bottom to record the heights of the people we have traversed.
For the \(i\)-th person, if the stack is not empty and the top element of the stack is less than \(\textit{heights}[i]\), we increment the count of people the \(i\)-th person can see, then pop the top element of the stack, until the stack is empty or the top element of the stack is greater than or equal to \(\textit{heights}[i]\). If the stack is not empty at this point, it means the top element of the stack is greater than or equal to \(\textit{heights}[i]\), so we increment the count of people the \(i\)-th person can see by 1.
Next, we push \(\textit{heights}[i]\) onto the stack and continue to the next person.
After traversing, we return the answer array \(\textit{ans}\).
The time complexity is \(O(n)\), and the space complexity is \(O(n)\). Here, \(n\) is the length of the array \(\textit{heights}\).
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|