LeetCode 1802. Maximum Value at a Given Index in a Bounded Array
Binary Search
You are given three positive integers n
, index
and maxSum
. You want to construct an array nums
(0-indexed) that satisfies the following conditions:
nums.length == n
nums[i]
is a positive integer where0 <= i < n
.abs(nums[i] - nums[i+1]) <= 1
where0 <= i < n-1
.The sum of all the elements of
nums
does not exceedmaxSum
.nums[index]
is maximized.
Return nums[index]
of the constructed array.
Note that abs(x)
equals x
if x >= 0
, and -x
otherwise.
Example 1:
Example 2:
Constraints:
1 <= n <= maxSum <= 10^9
0 <= index < n
Solution
PreviousLeetCode 1801. Number of Orders in the BacklogNextLeetCode 1803. Count Pairs With XOR in a Range
Last updated