forked from shijbian/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpartition-array-into-disjoint-intervals.py
More file actions
43 lines (40 loc) · 1.06 KB
/
partition-array-into-disjoint-intervals.py
File metadata and controls
43 lines (40 loc) · 1.06 KB
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
# Time: O(n)
# Space: O(n)
# Given an array A, partition it into two (contiguous) subarrays
# left and right so that:
#
# Every element in left is less than or equal to every element in right.
# left and right are non-empty.
# left has the smallest possible size.
# Return the length of left after such a partitioning.
# It is guaranteed that such a partitioning exists.
#
# Example 1:
#
# Input: [5,0,3,8,6]
# Output: 3
# Explanation: left = [5,0,3], right = [8,6]
# Example 2:
#
# Input: [1,1,1,0,6,12]
# Output: 4
# Explanation: left = [1,1,1,0], right = [6,12]
#
# Note:
# - 2 <= A.length <= 30000
# - 0 <= A[i] <= 10^6
# - It is guaranteed there is at least one way to partition A as described.
class Solution(object):
def partitionDisjoint(self, A):
"""
:type A: List[int]
:rtype: int
"""
B = A[:]
for i in reversed(xrange(len(A)-1)):
B[i] = min(B[i], B[i+1])
p_max = 0
for i in xrange(1, len(A)):
p_max = max(p_max, A[i-1])
if p_max <= B[i]:
return i