-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNumberOfVisiblePeopleInAQueue.java
62 lines (55 loc) · 1.68 KB
/
NumberOfVisiblePeopleInAQueue.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*https://leetcode.com/problems/number-of-visible-people-in-a-queue/*/
class Solution {
public int[] canSeePersonsCount(int[] heights) {
int n = heights.length, low, high, mid, top = -1, i, j, res = -1;
int[] stack = new int[n];
int[] result = new int[n];
if (n == 1) return result;
result[n-1] = 0; stack[++top] = heights[n-1];
result[n-2] = 1;
if (n == 2) return result;
if (stack[top] < heights[n-2]) --top;
stack[++top] = heights[n-2];
for (i = n-3; i >= 0; --i)
{
low = 0; high = top; mid = -1; res = 0;
while (low <= high)
{
mid = low+((high-low)/2);
if (stack[mid] > heights[i])
{
res = mid;
low = mid+1;
}
else
high = mid-1;
}
result[i] = top-res+1;
while (top >= 0 && stack[top] < heights[i]) --top;
stack[++top] = heights[i];
}
return result;
}
}
class Solution {
public int[] canSeePersonsCount(int[] heights)
{
int size = heights.length;
int[] stack = new int[size];
int i, top = 0;
stack[0] = heights[size-1];
int[] visible = new int[size];
for (i = size-2; i >= 0; --i)
{
int count = 0;
while (top >= 0 && heights[i] >= stack[idx])
{
++count; --top;
}
if (top >= 0) ++count;
stack[++top] = heights[i];
visible[i] = count;
}
return visible;
}
}