-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy path2070-most-beautiful-item-for-each-query.js
More file actions
54 lines (47 loc) · 1.41 KB
/
2070-most-beautiful-item-for-each-query.js
File metadata and controls
54 lines (47 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* 2070. Most Beautiful Item for Each Query
* https://leetcode.com/problems/most-beautiful-item-for-each-query/
* Difficulty: Medium
*
* You are given a 2D integer array items where items[i] = [pricei, beautyi] denotes the price and
* beauty of an item respectively.
*
* You are also given a 0-indexed integer array queries. For each queries[j], you want to determine
* the maximum beauty of an item whose price is less than or equal to queries[j]. If no such item
* exists, then the answer to this query is 0.
*
* Return an array answer of the same length as queries where answer[j] is the answer to the jth
* query.
*/
/**
* @param {number[][]} items
* @param {number[]} queries
* @return {number[]}
*/
var maximumBeauty = function(items, queries) {
items.sort((a, b) => a[0] - b[0]);
const maxBeauty = [];
let currentMax = 0;
for (const [, beauty] of items) {
currentMax = Math.max(currentMax, beauty);
maxBeauty.push(currentMax);
}
const result = new Array(queries.length).fill(0);
for (let i = 0; i < queries.length; i++) {
const price = queries[i];
let left = 0;
let right = items.length - 1;
while (left <= right) {
const mid = Math.floor((left + right) / 2);
if (items[mid][0] <= price) {
left = mid + 1;
} else {
right = mid - 1;
}
}
if (right >= 0) {
result[i] = maxBeauty[right];
}
}
return result;
};