Off-by-one on range boundaries
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Move from brute-force thinking to an efficient approach using array strategy.
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:
Input: values = [8,1,5,2,6] Output: 11 Explanation: i = 0, j = 2, values[i] + values[j] + i - j = 8 + 5 + 0 - 2 = 11
Example 2:
Input: values = [1,2] Output: 2
Constraints:
2 <= values.length <= 5 * 1041 <= values[i] <= 1000Problem summary: 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.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Array · Dynamic Programming
[8,1,5,2,6]
[1,2]
Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #1014: Best Sightseeing Pair
class Solution {
public int maxScoreSightseeingPair(int[] values) {
int ans = 0, mx = 0;
for (int j = 0; j < values.length; ++j) {
ans = Math.max(ans, mx + values[j] - j);
mx = Math.max(mx, values[j] + j);
}
return ans;
}
}
// Accepted solution for LeetCode #1014: Best Sightseeing Pair
func maxScoreSightseeingPair(values []int) (ans int) {
mx := 0
for j, x := range values {
ans = max(ans, mx+x-j)
mx = max(mx, x+j)
}
return
}
# Accepted solution for LeetCode #1014: Best Sightseeing Pair
class Solution:
def maxScoreSightseeingPair(self, values: List[int]) -> int:
ans = mx = 0
for j, x in enumerate(values):
ans = max(ans, mx + x - j)
mx = max(mx, x + j)
return ans
// Accepted solution for LeetCode #1014: Best Sightseeing Pair
impl Solution {
pub fn max_score_sightseeing_pair(values: Vec<i32>) -> i32 {
let mut ans = 0;
let mut mx = 0;
for (j, &x) in values.iter().enumerate() {
ans = ans.max(mx + x - j as i32);
mx = mx.max(x + j as i32);
}
ans
}
}
// Accepted solution for LeetCode #1014: Best Sightseeing Pair
function maxScoreSightseeingPair(values: number[]): number {
let [ans, mx] = [0, 0];
for (let j = 0; j < values.length; ++j) {
ans = Math.max(ans, mx + values[j] - j);
mx = Math.max(mx, values[j] + j);
}
return ans;
}
Use this to step through a reusable interview workflow for this problem.
Pure recursion explores every possible choice at each step. With two choices per state (take or skip), the decision tree has 2ⁿ leaves. The recursion stack uses O(n) space. Many subproblems are recomputed exponentially many times.
Each cell in the DP table is computed exactly once from previously solved subproblems. The table dimensions determine both time and space. Look for the state variables — each unique combination of state values is one cell. Often a rolling array can reduce space by one dimension.
Review these before coding to avoid predictable interview regressions.
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Wrong move: An incomplete state merges distinct subproblems and caches incorrect answers.
Usually fails on: Correctness breaks on cases that differ only in hidden state.
Fix: Define state so each unique subproblem maps to one DP cell.