-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
finding-the-number-of-visible-mountains.py
44 lines (39 loc) · 1.29 KB
/
finding-the-number-of-visible-mountains.py
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
# Time: O(nlogn)
# Space: O(1)
# math, sort
class Solution(object):
def visibleMountains(self, peaks):
"""
:type peaks: List[List[int]]
:rtype: int
"""
peaks.sort(key=lambda x: (x[0]-x[1], -(x[0]+x[1]))) # rotate points by 45 degrees and we only care the largest new y in the same new x
result = mx = 0
for i in xrange(len(peaks)):
if peaks[i][0]+peaks[i][1] <= mx:
continue
mx = peaks[i][0]+peaks[i][1]
if i+1 == len(peaks) or peaks[i+1] != peaks[i]:
result += 1
return result
# Time: O(nlogn)
# Space: O(n)
# sort, mono stack
class Solution2(object):
def visibleMountains(self, peaks):
"""
:type peaks: List[List[int]]
:rtype: int
"""
def is_covered(a, b):
x1, y1 = a
x2, y2 = b
return x2-y2 <= x1-y1 and x1+y1 <= x2+y2
peaks.sort()
stk = []
for i in xrange(len(peaks)):
while stk and is_covered(peaks[stk[-1]], peaks[i]):
stk.pop()
if (i-1 == -1 or peaks[i-1] != peaks[i]) and (not stk or not is_covered(peaks[i], peaks[stk[-1]])): # not duplicted and not covered
stk.append(i)
return len(stk)