-
-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy path887.java
More file actions
42 lines (40 loc) · 1.16 KB
/
887.java
File metadata and controls
42 lines (40 loc) · 1.16 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
__________________________________________________________________________________________________
sample 0 ms submission
class Solution {
public int superEggDrop(int K, int N) {
int lo = 1, hi = N;
while (lo < hi) {
int mi = (lo + hi) / 2;
if (f(mi, K, N) < N)
lo = mi + 1;
else
hi = mi;
}
return lo;
}
public int f(int x, int K, int N) {
int ans = 0, r = 1;
for (int i = 1; i <= K; ++i) {
r *= x-i+1;
r /= i;
ans += r;
if (ans >= N) break;
}
return ans;
}
}
__________________________________________________________________________________________________
sample 31828 kb submission
class Solution {
public int superEggDrop(int K, int N) {
int floors[] = new int[K+1];
int moves = 0;
for(; floors[K] < N; moves++){
for(int i = K; i > 0; i--){
floors[i] = 1+floors[i-1]+floors[i];
}
}
return moves;
}
}
__________________________________________________________________________________________________