1014. Best Sightseeing Pair
https://leetcode.com/problems/best-sightseeing-pair
Description
You are given an integer array values
where values[i] represents the value of the ith
sightseeing spot. Two sightseeing spots i
and j
have a distance j - i
between them.
The score of a pair (i < j
) of sightseeing spots is values[i] + values[j] + i - j
: the sum of the values of the sightseeing spots, minus the distance between them.
Return the maximum score of a pair of sightseeing spots.
Example 1:
Example 2:
Constraints:
2 <= values.length <= 5 * 104
1 <= values[i] <= 1000
ac
Previous1013. Partition Array Into Three Parts With Equal SumNext1015. Smallest Integer Divisible by K
Last updated