2070. Most Beautiful Item for Each Query - Detailed Explanation
Problem Statement
You are given a 2D integer array items where each element is of the form [price, beauty]
, meaning that an item has a given price and a beauty value. You are also given an integer array queries. For each query, you need to determine the maximum beauty among all items whose price is less than or equal to the query value. If no item satisfies the condition for a query, the answer for that query is 0.
Return an array of integers where the (j)th element is the answer for the (j)th query in the original order.
Example 1
- Input:
- items =
[[1, 2], [3, 2], [2, 4], [5, 6]]
- queries =
[3, 1, 5]
- items =
- Explanation:
- For query = 3:
- Items with price ≤ 3:
[1,2]
,[3,2]
,[2,4]
- Maximum beauty among these items is 4.
- Items with price ≤ 3:
- For query = 1:
- Only item with price ≤ 1 is
[1,2]
→ beauty = 2.
- Only item with price ≤ 1 is
- For query = 5:
- All items with price ≤ 5:
[1,2]
,[3,2]
,[2,4]
,[5,6]
- Maximum beauty is 6.
- All items with price ≤ 5:
- For query = 3:
- Output:
[4, 2, 6]
Example 2
- Input:
- items =
[[4, 5], [1, 2], [3, 7]]
- queries =
[2, 4, 1]
- items =
- Explanation:
- For query = 2:
- Items with price ≤ 2:
[1,2]
→ maximum beauty = 2.
- Items with price ≤ 2:
- For query = 4:
- Items with price ≤ 4:
[4,5]
,[1,2]
,[3,7]
→ maximum beauty = 7.
- Items with price ≤ 4:
- For query = 1:
- Items with price ≤ 1:
[1,2]
→ maximum beauty = 2.
- Items with price ≤ 1:
- For query = 2:
- Output:
[2, 7, 2]
Constraints
- (1 \leq \text{items.length}, \, \text{queries.length} \leq 10^5)
- (1 \leq \text{price}, \text{beauty}, \text{queries}[i] \leq 10^5)
- The queries can be in any order and the items array is not necessarily sorted.
Hints
-
Naive Approach Pitfall:
- Iterating through all items for every query results in an (O(n \times q)) solution, which is too slow given the constraints.
-
Sorting & Offline Query Processing:
- If you sort the items by price and also process the queries in increasing order, you can “sweep” through the items only once while maintaining the best (maximum) beauty seen so far.
-
Maintaining Original Order:
- Since the answer must be in the original query order, you can store the query’s index along with its value when sorting.
Approach 1: Sorting with Two-Pointers (Offline Query Processing)
Detailed Explanation
-
Sort the Items:
Sort the array items by the price (first element of each subarray). This allows you to efficiently consider all items that meet a given price threshold. -
Process Queries Offline:
- Create a list of tuples for the queries where each tuple is
(query_value, original_index)
. - Sort this list by the query value in ascending order.
- Create a list of tuples for the queries where each tuple is
-
Iterate with a Two-Pointer Technique:
- Use a pointer to traverse through the sorted items array.
- For each query (in sorted order), move the pointer forward until the item’s price is greater than the query value.
- During this iteration, update a variable
max_beauty
to be the maximum beauty seen so far among items with price ≤ current query. - Assign
max_beauty
as the answer for the current query.
-
Output the Answers:
- Since you stored the original index for each query, you can put each answer in its corresponding position in the result array.
Why This Works
- Efficiency:
Sorting items and queries takes (O(n \log n)) and (O(q \log q)), respectively. Then a single pass over items for all queries gives an (O(n + q)) sweep. - Correctness:
Since items are processed in increasing order of price, when you reach a query with threshold (q), you have already considered all items with price ≤ (q). The maximum beauty among these items is correctly maintained.
Code Solutions
Python Code
Java Code
Complexity Analysis
-
Time Complexity:
- Sorting the items array takes (O(n \log n)) where (n) is the number of items.
- Sorting the queries takes (O(q \log q)) where (q) is the number of queries.
- The two-pointer sweep through items and queries takes (O(n + q)).
- Overall, the time complexity is (O(n \log n + q \log q)).
-
Space Complexity:
- We use additional space for storing sorted queries and the answer array. The extra space is (O(q)).
Step-by-Step Walkthrough
-
Sorting:
- Items: Sort by price.
- Example:
[[1,2], [2,4], [3,2], [5,6]]
- Example:
- Queries: Create list of tuples with query and its original index, then sort.
- Example: For queries
[3,1,5]
→ sorted becomes[(1,1), (3,0), (5,2)]
.
- Example: For queries
- Items: Sort by price.
-
Processing Queries:
- Initialize
maxBeauty = 0
and pointeritemIndex = 0
. - For query = 1:
- Process items while price ≤ 1. Only item
[1,2]
qualifies. - Update
maxBeauty
to 2. Record answer for original index 1 → answer[1] = 2.
- Process items while price ≤ 1. Only item
- For query = 3:
- Process next items while price ≤ 3. Items
[2,4]
and[3,2]
qualify. - Update
maxBeauty
to max(2,4,2) = 4. Record answer for original index 0 → answer[0] = 4.
- Process next items while price ≤ 3. Items
- For query = 5:
- Process remaining item
[5,6]
since price 5 ≤ 5. - Update
maxBeauty
to max(4,6) = 6. Record answer for original index 2 → answer[2] = 6.
- Process remaining item
- Initialize
-
Output:
- Reconstruct the answer array in the original order:
[4, 2, 6]
.
- Reconstruct the answer array in the original order:
Common Pitfalls
-
Not Maintaining Original Query Order:
It is essential to store and later use the original indices of the queries when sorting, so that the final answer is in the correct order. -
Inefficient Lookups:
Iterating through the items for every query without sorting can lead to a time-out on large inputs. -
Boundary Conditions:
Make sure the pointer for items does not exceed the length of the items array.
Alternative Approaches and Related Problems
-
Segment Tree / Binary Indexed Tree:
If the queries were dynamic (e.g., supporting updates to the items), you might consider using advanced data structures to support efficient maximum queries on a price range. -
Related Problems:
- "Maximum Value at a Given Index in a Bounded Array" – problems where binary search and greedy techniques are combined.
- "Design a Food Rating System" – combining queries with efficient data structures to retrieve maximum or minimum values.
GET YOUR FREE
Coding Questions Catalog
