Egg Drop With 2 Eggs and N Floors
You are given two identical eggs and you have access to a building with n floors labeled from 1 to n.
You know that there exists a floor f where 0 <= f <= n such that any egg dropped at a floor higher than f will break, and any egg dropped at or below floor f will not break.
In each move, you may take an unbroken egg and drop it from any floor x where 1 <= x <= n. If the egg breaks, you can no longer use it. However, if the egg does not break, you may reuse it in future moves.
Return the minimum number of moves that you need to determine with certainty what the value of f is.
Example 1
Input
n = 2Output
2Dropping from floors 1 and 2 distinguishes all possible values of f: 0, 1, or 2.
Example 2
Input
n = 100Output
14The described optimal strategy determines f for 100 floors in at most 14 drops regardless of the outcome.
Constraints
- 1 <= n <= 1000