Skip to content

Commit 36a6434

Browse files
committed
[LeetCode Sync] Runtime - 47 ms (81.40%), Memory - 94.1 MB (60.67%)
1 parent 88314db commit 36a6434

File tree

2 files changed

+81
-0
lines changed

2 files changed

+81
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<p>You are given a 2D integer array <code>items</code> where <code>items[i] = [price<sub>i</sub>, beauty<sub>i</sub>]</code> denotes the <strong>price</strong> and <strong>beauty</strong> of an item respectively.</p>
2+
3+
<p>You are also given a <strong>0-indexed</strong> integer array <code>queries</code>. For each <code>queries[j]</code>, you want to determine the <strong>maximum beauty</strong> of an item whose <strong>price</strong> is <strong>less than or equal</strong> to <code>queries[j]</code>. If no such item exists, then the answer to this query is <code>0</code>.</p>
4+
5+
<p>Return <em>an array </em><code>answer</code><em> of the same length as </em><code>queries</code><em> where </em><code>answer[j]</code><em> is the answer to the </em><code>j<sup>th</sup></code><em> query</em>.</p>
6+
7+
<p>&nbsp;</p>
8+
<p><strong class="example">Example 1:</strong></p>
9+
10+
<pre>
11+
<strong>Input:</strong> items = [[1,2],[3,2],[2,4],[5,6],[3,5]], queries = [1,2,3,4,5,6]
12+
<strong>Output:</strong> [2,4,5,5,6,6]
13+
<strong>Explanation:</strong>
14+
- For queries[0]=1, [1,2] is the only item which has price &lt;= 1. Hence, the answer for this query is 2.
15+
- For queries[1]=2, the items which can be considered are [1,2] and [2,4].
16+
The maximum beauty among them is 4.
17+
- For queries[2]=3 and queries[3]=4, the items which can be considered are [1,2], [3,2], [2,4], and [3,5].
18+
The maximum beauty among them is 5.
19+
- For queries[4]=5 and queries[5]=6, all items can be considered.
20+
Hence, the answer for them is the maximum beauty of all items, i.e., 6.
21+
</pre>
22+
23+
<p><strong class="example">Example 2:</strong></p>
24+
25+
<pre>
26+
<strong>Input:</strong> items = [[1,2],[1,2],[1,3],[1,4]], queries = [1]
27+
<strong>Output:</strong> [4]
28+
<strong>Explanation:</strong>
29+
The price of every item is equal to 1, so we choose the item with the maximum beauty 4.
30+
Note that multiple items can have the same price and/or beauty.
31+
</pre>
32+
33+
<p><strong class="example">Example 3:</strong></p>
34+
35+
<pre>
36+
<strong>Input:</strong> items = [[10,1000]], queries = [5]
37+
<strong>Output:</strong> [0]
38+
<strong>Explanation:</strong>
39+
No item has a price less than or equal to 5, so no item can be chosen.
40+
Hence, the answer to the query is 0.
41+
</pre>
42+
43+
<p>&nbsp;</p>
44+
<p><strong>Constraints:</strong></p>
45+
46+
<ul>
47+
<li><code>1 &lt;= items.length, queries.length &lt;= 10<sup>5</sup></code></li>
48+
<li><code>items[i].length == 2</code></li>
49+
<li><code>1 &lt;= price<sub>i</sub>, beauty<sub>i</sub>, queries[j] &lt;= 10<sup>9</sup></code></li>
50+
</ul>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
class Solution {
2+
public:
3+
vector<int> maximumBeauty(vector<vector<int>>& items, vector<int>& queries) {
4+
int n = queries.size();
5+
vector<int> ans(n);
6+
7+
vector<pair<int,int>> queriesPair;
8+
9+
for (int i = 0; i < n; i++) {
10+
queriesPair.push_back({queries[i], i});
11+
}
12+
13+
sort(queriesPair.begin(), queriesPair.end());
14+
sort(items.begin(), items.end());
15+
16+
int itemIndex = 0, maxBeauty = 0;
17+
for (int i = 0; i < queriesPair.size(); i++) {
18+
int maxPriceAllowed = queriesPair[i].first;
19+
int queryOriginalIndex = queriesPair[i].second;
20+
21+
while (itemIndex < items.size() && items[itemIndex][0] <= maxPriceAllowed) {
22+
maxBeauty = max(maxBeauty, items[itemIndex][1]);
23+
itemIndex++;
24+
}
25+
26+
ans[queryOriginalIndex] = maxBeauty;
27+
}
28+
29+
return ans;
30+
}
31+
};

0 commit comments

Comments
 (0)