The following is a description of the instance of this famous puzzle involving n=2 eggs and a building with k=36 floors.

Suppose that we wish to know which stories in a 36-story building are safe to drop eggs from, and which will cause the eggs to break on landing. We make a few assumptions:

…..An egg that survives a fall can be used again.
…..A broken egg must be discarded.
…..The effect of a fall is the same for all eggs.
…..If an egg breaks when dropped, then it would break if dropped from a higher floor.
…..If an egg survives a fall then it would survive a shorter fall.
…..It is not ruled out that the first-floor windows break eggs, nor is it ruled out that the 36th-floor do not cause an egg to break.

If only one egg is available and we wish to be sure of obtaining the right result, the experiment can be carried out in only one way. Drop the egg from the first-floor window; if it survives, drop it from the second floor window. Continue upward until it breaks. In the worst case, this method may require 36 droppings. Suppose 2 eggs are available. What is the least number of egg-droppings that is guaranteed to work in all cases?
The problem is not actually to find the critical floor, but merely to decide floors from which eggs should be dropped so that total number of trials are minimized.

[ad type=”banner”]

In this post, we will discuss solution to a general problem with n eggs and k floors. The solution is to try dropping an egg from every floor (from 1 to k) and recursively calculate the minimum number of droppings needed in worst case. The floor which gives the minimum value in worst case is going to be part of the solution.
In the following solutions, we return the minimum number of trials in worst case; these solutions can be easily modified to print floor numbers of every trials also.

  • Optimal Substructure:

When we drop an egg from a floor x, there can be two cases (1) The egg breaks (2) The egg doesn’t break.

  • If the egg breaks after dropping from xth floor, then we only need to check for floors lower than x with remaining eggs; so the problem reduces to x-1 floors and n-1 eggs
  • If the egg doesn’t break after dropping from the xth floor, then we only need to check for floors higher than x; so the problem reduces to k-x floors and n eggs.

Since we need to minimize the number of trials in worst case, we take the maximum of two cases. We consider the max of above two cases for every floor and choose the floor which yields minimum number of trials.

  k ==> Number of floors
  n ==> Number of Eggs
  eggDrop(n, k) ==> Minimum number of trials needed to find the critical
                    floor in worst case.
  eggDrop(n, k) = 1 + min{max(eggDrop(n - 1, x - 1), eggDrop(n, k - x)): 
                 x in {1, 2, ..., k}}
  • Overlapping Subproblems

Following is recursive implementation that simply follows the recursive structure mentioned above.

[pastacode lang=”c” manual=”%23%20include%20%3Cstdio.h%3E%0A%23%20include%20%3Climits.h%3E%0A%20%0A%2F%2F%20A%20utility%20function%20to%20get%20maximum%20of%20two%20integers%0Aint%20max(int%20a%2C%20int%20b)%20%7B%20return%20(a%20%3E%20b)%3F%20a%3A%20b%3B%20%7D%0A%20%0A%2F*%20Function%20to%20get%20minimum%20number%20of%20trials%20needed%20in%20worst%0A%20%20case%20with%20n%20eggs%20and%20k%20floors%20*%2F%0Aint%20eggDrop(int%20n%2C%20int%20k)%0A%7B%0A%20%20%20%20%2F%2F%20If%20there%20are%20no%20floors%2C%20then%20no%20trials%20needed.%20OR%20if%20there%20is%0A%20%20%20%20%2F%2F%20one%20floor%2C%20one%20trial%20needed.%0A%20%20%20%20if%20(k%20%3D%3D%201%20%7C%7C%20k%20%3D%3D%200)%0A%20%20%20%20%20%20%20%20return%20k%3B%0A%20%0A%20%20%20%20%2F%2F%20We%20need%20k%20trials%20for%20one%20egg%20and%20k%20floors%0A%20%20%20%20if%20(n%20%3D%3D%201)%0A%20%20%20%20%20%20%20%20return%20k%3B%0A%20%0A%20%20%20%20int%20min%20%3D%20INT_MAX%2C%20x%2C%20res%3B%0A%20%0A%20%20%20%20%2F%2F%20Consider%20all%20droppings%20from%201st%20floor%20to%20kth%20floor%20and%0A%20%20%20%20%2F%2F%20return%20the%20minimum%20of%20these%20values%20plus%201.%0A%20%20%20%20for%20(x%20%3D%201%3B%20x%20%3C%3D%20k%3B%20x%2B%2B)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20res%20%3D%20max(eggDrop(n-1%2C%20x-1)%2C%20eggDrop(n%2C%20k-x))%3B%0A%20%20%20%20%20%20%20%20if%20(res%20%3C%20min)%0A%20%20%20%20%20%20%20%20%20%20%20%20min%20%3D%20res%3B%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20return%20min%20%2B%201%3B%0A%7D%0A%20%0A%2F*%20Driver%20program%20to%20test%20to%20pront%20printDups*%2F%0Aint%20main()%0A%7B%0A%20%20%20%20int%20n%20%3D%202%2C%20k%20%3D%2010%3B%0A%20%20%20%20printf%20(%22%5CnMinimum%20number%20of%20trials%20in%20worst%20case%20with%20%25d%20eggs%20and%20%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%22%25d%20floors%20is%20%25d%20%5Cn%22%2C%20n%2C%20k%2C%20eggDrop(n%2C%20k))%3B%0A%20%20%20%20return%200%3B%0A%7D” message=”C” highlight=”” provider=”manual”/]

Output :

Minimum number of trials in worst case with 2 eggs and 10 floors is 4

It should be noted that the above function computes the same subproblems again and again. See the following partial recursion tree, E(2, 2) is being evaluated twice. There will many repeated subproblems when you draw the complete recursion tree even for small values of n and k.

                         E(2,4)
                           |                      
          ------------------------------------- 
          |             |           |         |   
          |             |           |         |       
      x=1/\          x=2/\      x=3/ \    x=4/ \
        /  \           /  \       ....      ....
       /    \         /    \
 E(1,0)  E(2,3)     E(1,1)  E(2,2)
          /\  /\...         /  \
      x=1/  \               .....
        /    \
     E(1,0)  E(2,2)
            /   \
            ......

Partial recursion tree for 2 eggs and 4 floors.

Since same suproblems are called again, this problem has Overlapping Subprolems property. So Egg Dropping Puzzle has both properties (see this and this) of a dynamic programming problem. Like other typical Dynamic Programming(DP) problems, recomputations of same subproblems can be avoided by constructing a temporary array eggFloor[][] in bottom up manner.

[ad type=”banner”]

Dynamic Programming Solution
Following are java implementations for Egg Dropping problem using Dynamic Programming.

[pastacode lang=”java” manual=”class%20EggDrop%0A%7B%0A%20%20%20%20%2F%2F%20A%20utility%20function%20to%20get%20maximum%20of%20two%20integers%0A%20%20%20%20static%20int%20max(int%20a%2C%20int%20b)%20%7B%20return%20(a%20%3E%20b)%3F%20a%3A%20b%3B%20%7D%0A%20%20%20%20%20%20%0A%20%20%20%20%2F*%20Function%20to%20get%20minimum%20number%20of%20trials%20needed%20in%20worst%0A%20%20%20%20case%20with%20n%20eggs%20and%20k%20floors%20*%2F%0A%20%20%20%20static%20int%20eggDrop(int%20n%2C%20int%20k)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%2F*%20A%202D%20table%20where%20entery%20eggFloor%5Bi%5D%5Bj%5D%20will%20represent%20minimum%0A%20%20%20%20%20%20%20number%20of%20trials%20needed%20for%20i%20eggs%20and%20j%20floors.%20*%2F%0A%20%20%20%20%20%20%20%20int%20eggFloor%5B%5D%5B%5D%20%3D%20new%20int%5Bn%2B1%5D%5Bk%2B1%5D%3B%0A%20%20%20%20%20%20%20%20int%20res%3B%0A%20%20%20%20%20%20%20%20int%20i%2C%20j%2C%20x%3B%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%2F%2F%20We%20need%20one%20trial%20for%20one%20floor%20and0%20trials%20for%200%20floors%0A%20%20%20%20%20%20%20%20for%20(i%20%3D%201%3B%20i%20%3C%3D%20n%3B%20i%2B%2B)%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20eggFloor%5Bi%5D%5B1%5D%20%3D%201%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20eggFloor%5Bi%5D%5B0%5D%20%3D%200%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%2F%2F%20We%20always%20need%20j%20trials%20for%20one%20egg%20and%20j%20floors.%0A%20%20%20%20%20%20%20%20for%20(j%20%3D%201%3B%20j%20%3C%3D%20k%3B%20j%2B%2B)%0A%20%20%20%20%20%20%20%20%20%20%20%20eggFloor%5B1%5D%5Bj%5D%20%3D%20j%3B%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%2F%2F%20Fill%20rest%20of%20the%20entries%20in%20table%20using%20optimal%20substructure%0A%20%20%20%20%20%20%20%20%2F%2F%20property%0A%20%20%20%20%20%20%20%20for%20(i%20%3D%202%3B%20i%20%3C%3D%20n%3B%20i%2B%2B)%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20for%20(j%20%3D%202%3B%20j%20%3C%3D%20k%3B%20j%2B%2B)%0A%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20eggFloor%5Bi%5D%5Bj%5D%20%3D%20Integer.MAX_VALUE%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20for%20(x%20%3D%201%3B%20x%20%3C%3D%20j%3B%20x%2B%2B)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20res%20%3D%201%20%2B%20max(eggFloor%5Bi-1%5D%5Bx-1%5D%2C%20eggFloor%5Bi%5D%5Bj-x%5D)%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20if%20(res%20%3C%20eggFloor%5Bi%5D%5Bj%5D)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20eggFloor%5Bi%5D%5Bj%5D%20%3D%20res%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%2F%2F%20eggFloor%5Bn%5D%5Bk%5D%20holds%20the%20result%0A%20%20%20%20%20%20%20%20return%20eggFloor%5Bn%5D%5Bk%5D%3B%0A%20%0A%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%2F*%20Driver%20program%20to%20test%20to%20pront%20printDups*%2F%0A%20%20%20%20public%20static%20void%20%20main(String%20args%5B%5D%20)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20int%20n%20%3D%202%2C%20k%20%3D%2010%3B%0A%20%20%20%20%20%20%20%20System.out.println(%22Minimum%20number%20of%20trials%20in%20worst%20case%20with%20%22%2Bn%2B%22%20%20eggs%20and%20%22%2Bk%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22%20floors%20is%20%22%2BeggDrop(n%2C%20k))%3B%20%20%20%0A%20%20%20%20%7D%0A%7D” message=”Java” highlight=”” provider=”manual”/]

Output :

Minimum number of trials in worst case with 2 eggs and 36 floors is 8

Time Complexity: O(nk^2)
Auxiliary Space: O(nk)

[ad type=”banner”]