2070. Most Beautiful Item for Each Query - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

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]
  • Explanation:
    • For query = 3:
      • Items with price ≤ 3: [1,2], [3,2], [2,4]
      • Maximum beauty among these items is 4.
    • For query = 1:
      • Only item with price ≤ 1 is [1,2] → beauty = 2.
    • For query = 5:
      • All items with price ≤ 5: [1,2], [3,2], [2,4], [5,6]
      • Maximum beauty is 6.
  • Output: [4, 2, 6]

Example 2

  • Input:
    • items = [[4, 5], [1, 2], [3, 7]]
    • queries = [2, 4, 1]
  • Explanation:
    • For query = 2:
      • Items with price ≤ 2: [1,2] → maximum beauty = 2.
    • For query = 4:
      • Items with price ≤ 4: [4,5], [1,2], [3,7] → maximum beauty = 7.
    • For query = 1:
      • Items with price ≤ 1: [1,2] → maximum beauty = 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

  1. 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.
  2. 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.
  3. 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

  1. 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.

  2. 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.
  3. 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.
  4. 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

Python3
Python3

. . . .

Java Code

Python3
Python3

. . . .

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

  1. Sorting:

    • Items: Sort by price.
      • Example: [[1,2], [2,4], [3,2], [5,6]]
    • 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)].
  2. Processing Queries:

    • Initialize maxBeauty = 0 and pointer itemIndex = 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.
    • 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.
    • 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.
  3. Output:

    • Reconstruct the answer array in the original order: [4, 2, 6].

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.

  • 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.
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Why are coding interviews so hard?
Can I be a web developer without a CS degree?
How does the fibonacci recursive function work?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;