woo-chia-wei / eggs-dropping-simulation

Simulation of eggs dropping problem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

Simulation of eggs dropping problem with 2 eggs and 100 floors building.

Special thanks to Gopal Das for introducing this interesting problem at our weekly sharing session in office.

Problem Description

Quoted from https://www.geeksforgeeks.org/egg-dropping-puzzle-dp-11/

Suppose that we wish to know which stories in a 100-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 100 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.

About

Simulation of eggs dropping problem


Languages

Language:Jupyter Notebook 100.0%