-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinimumIntervalToIncludeEachQuery.java
More file actions
35 lines (31 loc) · 1.62 KB
/
MinimumIntervalToIncludeEachQuery.java
File metadata and controls
35 lines (31 loc) · 1.62 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
/*
You are given a 2D integer array intervals, where intervals[i] = [lefti, righti] describes the ith interval starting at lefti and ending at righti (inclusive). The size of an interval is defined as the number of integers it contains, or more formally righti - lefti + 1.
You are also given an integer array queries. The answer to the jth query is the size of the smallest interval i such that lefti <= queries[j] <= righti. If no such interval exists, the answer is -1.
Return an array containing the answers to the queries.
Example 1:
Input: intervals = [[1,4],[2,4],[3,6],[4,4]], queries = [2,3,4,5]
Output: [3,3,1,4]
Explanation: The queries are processed as follows:
- Query = 2: The interval [2,4] is the smallest interval containing 2. The answer is 4 - 2 + 1 = 3.
- Query = 3: The interval [2,4] is the smallest interval containing 3. The answer is 4 - 2 + 1 = 3.
- Query = 4: The interval [4,4] is the smallest interval containing 4. The answer is 4 - 4 + 1 = 1.
- Query = 5: The interval [3,6] is the smallest interval containing 5. The answer is 6 - 3 + 1 = 4.
*/
// ==========BRUTE FORCE=======
public int[] minInterval(int[][] intervals, int[] queries) {
int[] res = new int[queries.length];
int idx = 0;
for (int q : queries) {
int cur = -1;
for (int[] interval : intervals) {
int l = interval[0], r = interval[1];
if (l <= q && q <= r) {
if (cur == -1 || (r - l + 1) < cur) {
cur = r - l + 1;
}
}
}
res[idx++] = cur;
}
return res;
}