Segment
A company is performing an analysis on the computers at its main office. The computers are spaced along a single row. For each group of contiguous computers of a certain length, that is, for each segment, determine the minimum amount of disk space available on a computer. Return the maximum of these values as your answer.
Example
n = 4, the number of computers
space = [8, 2, 4, 6]
x = 2, the segment length
The free disk space of computers in each of the segments is [8, 2], [2, 4], [4, 6]. The minima of the three segments are [2, 2, 4]. The maximum of these is 4.
Function Description
Complete the function segment in the editor below.
segment has the following parameter(s):
Returns:
Constraints
1 ≤ n ≤ 106
1 ≤ x ≤ n
1 ≤ space[i] ≤ 109
Input Format for Custom Testing Sample Case 0 Sample Input
STDIN Function
1 → length of segments x = 1 5 → size of space n = 5 1 → space = [1, 2, 3, 1, 2] 2 3 1 2
Sample Output
3
Explanation
The segments of size x = 1 are [1], [2], [3], [1], and [2]. Because each segment only contains 1 element, each value is minimal with respect to the segment it is in. The maximum of these values is 3.
Sample Case 1 Sample Case 2 Python 3 23242526272829303132333435363738394041424344454647484950515253545556575859606162
O(N*x)
(N-x)*x
if name == 'main': 19def segment(x, space): Line: 62 Col: 27
Input / Output
Test Cases
Console Input 1 5 1 2 3 1 2 Your Output (stdout) 3 Debug output 1 2 3 1
分析: sliding window+heapq, heapq无需保持x长度,只需要比较min不在范围时,去表头。
deque
remplate
LeetCode 239. 滑动窗口最大值
Last updated
Was this helpful?