Home > Backend Development > PHP Tutorial > Best Sightseeing Pair

Best Sightseeing Pair

Mary-Kate Olsen
Release: 2024-12-30 02:46:08
Original
927 people have browsed it

Best Sightseeing Pair

1014. Best Sightseeing Pair

Difficulty: Medium

Topics: Array, Dynamic Programming

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 * 104
  • 1 <= values[i] <= 1000

Hint:

  1. Can you tell the best sightseeing spot in one pass (ie. as you iterate over the input?) What should we store or keep track of as we iterate to do this?

Solution:

We can use a single-pass approach with a linear time complexity O(n). The idea is to keep track of the best possible values[i] i as we iterate through the array. This allows us to maximize the score values[i] values[j] i - j for every valid pair (i, j).

Let's implement this solution in PHP: 1014. Best Sightseeing Pair






Explanation:

  1. Initialization:

    • maxI is initialized to values[0] because we start evaluating pairs from index 1.
    • maxScore is initialized to 0 to track the maximum score.
  2. Iterate Over the Array:

    • For each index j starting from 1, calculate the score for the pair (i, j) using the formula: Score = maxI values[j] - j
    • Update maxScore with the maximum value obtained.
  3. Update maxI:

    • Update maxI to track the maximum possible value of values[i] i for the next iterations.
  4. Return the Maximum Score:

    • After iterating through the array, maxScore will contain the maximum score for any pair.

Complexity:

  • Time Complexity: O(n) because we loop through the array once.
  • Space Complexity: O(1) as we use a constant amount of space.

This solution efficiently computes the maximum score while adhering to the constraints and is optimized for large inputs.

Contact Links

If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks ?. Your support would mean a lot to me!

If you want more helpful content like this, feel free to follow me:

  • LinkedIn
  • GitHub

The above is the detailed content of Best Sightseeing Pair. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template