Problem Description
You need to implement a system that tracks the ranking of scenic locations based on their attractiveness score. Each location has a unique name and a score, and the system should return the best locations in order of their scores and names. You can add locations and query for the i
th best location based on the number of queries made.
Key Insights
- Locations are ranked primarily by their attractiveness score in descending order.
- In case of ties in scores, locations are ranked lexicographically by their names in ascending order.
- The
get
method should return thei
th best location based on the number of times it has been called, which increments with each call. - Efficient data structures are needed to maintain the order and allow for fast insertions and queries.
Space and Time Complexity
Time Complexity:
- Adding a location takes O(log n) due to the sorting operation.
- Querying the
i
th location takes O(1) since we can directly access the required index after sorting.
Space Complexity:
- O(n) to store the locations.
Solution
To solve the problem, we will use a list to store the locations and their scores. Each time a location is added, we will insert it into the list in a way that maintains the order (using a binary search for efficient insertion). When querying for the i
th best location, we simply return the (i-1)
index from the sorted list. We will use the sorted
function combined with a custom sort key to handle the ranking conditions efficiently.