forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
31 lines (30 loc) · 1005 Bytes
/
Solution.java
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
/*
* // This is the custom function interface.
* // You should not implement it, or speculate about its implementation
* class CustomFunction {
* // Returns f(x, y) for any given positive integers x and y.
* // Note that f(x, y) is increasing with respect to both x and y.
* // i.e. f(x, y) < f(x + 1, y), f(x, y) < f(x, y + 1)
* public int f(int x, int y);
* };
*/
class Solution {
public List<List<Integer>> findSolution(CustomFunction customfunction, int z) {
List<List<Integer>> ans = new ArrayList<>();
for (int x = 1; x <= 1000; ++x) {
int l = 1, r = 1000;
while (l < r) {
int mid = (l + r) >> 1;
if (customfunction.f(x, mid) >= z) {
r = mid;
} else {
l = mid + 1;
}
}
if (customfunction.f(x, l) == z) {
ans.add(Arrays.asList(x, l));
}
}
return ans;
}
}