PHP Program for Egg Dropping Puzzle | DP-11 Last Updated : 09 Jul, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report 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. Source: Wiki for Dynamic Programming Recommended: Please solve it on “PRACTICE ” first, before moving on to the solution. Dynamic Programming Solution PHP <?php // A Dynamic Programming based PHP // Program for the Egg Dropping Puzzle /* Function to get minimum number of trials needed in worst case with n eggs and k floors */ function eggDrop($n, $k) { /* A 2D table where entry eggFloor[i][j] will represent minimum number of trials needed for i eggs and j floors. */ $eggFloor = array(array());; // We need one trial for one // floor and0 trials for 0 floors for ($i = 1; $i <=$n;$i++) { $eggFloor[$i][1] = 1; $eggFloor[$i][0] = 0; } // We always need j trials // for one egg and j floors. for ($j = 1; $j <= $k; $j++) $eggFloor[1][$j] = $j; // Fill rest of the entries in // table using optimal substructure // property for ($i = 2; $i <= $n; $i++) { for ($j = 2; $j <= $k; $j++) { $eggFloor[$i][$j] = 999999; for ($x = 1; $x <= $j; $x++) { $res = 1 + max($eggFloor[$i - 1][$x - 1], $eggFloor[$i][$j - $x]); if ($res < $eggFloor[$i][$j]) $eggFloor[$i][$j] = $res; } } } // eggFloor[n][k] holds the result return $eggFloor[$n][$k]; } // Driver Code $n = 2; $k = 36; echo "Minimum number of trials in worst case with " .$n. " eggs and " .$k. " floors is " .eggDrop($n, $k) ; // This code is contributed by Sam007 ?> Output:Minimum number of trials in worst case with 2 eggs and 36 floors is 8 Please refer complete article on Egg Dropping Puzzle | DP-11 for more details! Comment More infoAdvertise with us Next Article PHP Program to Move All Zeroes to End of Array K kartik Follow Improve Article Tags : Web Technologies PHP PHP Programs Similar Reads PHP Program for Find the number of islands | Set 1 (Using DFS) Given a 2D boolean matrix, the task is to find the number of islands. An island is a group of connected 1s. For example, the below matrix contains 6 islands Example: Input : mat[][] = {{1, 1, 0, 0, 0}, {0, 0, 0, 0, 1}, {1, 0, 0, 1, 1}, {0, 0, 0, 0, 0}, {1, 0, 1, 0, 1} Output : 6 This is a variation 3 min read PHP Program to Find the smallest missing number Given a sorted array of n distinct integers where each integer is in the range from 0 to m-1 and m > n. Find the smallest number that is missing from the array. Examples: Input: {0, 1, 2, 6, 9}, n = 5, m = 10 Output: 3Input: {4, 5, 10, 11}, n = 4, m = 12 Output: 0Input: {0, 1, 2, 3}, n = 4, m = 5 3 min read PHP Program to Move All Zeroes to End of Array Given an array of random numbers, Push all the zero's of a given array to the end of the array. For example, if the given arrays is {1, 9, 8, 4, 0, 0, 2, 7, 0, 6, 0}, it should be changed to {1, 9, 8, 4, 2, 7, 6, 0, 0, 0, 0}. The order of all other elements should be same. Expected time complexity i 3 min read PHP Program to Split Array and Add First Part to the End | Set 2 Given an array, the task is to split it from a specified position, and move the first part of array and add to the end. Examples: Input : Arr = [ 12, 10, 5, 6, 52, 36 ] k = 2 Output : Arr = [ 5, 6, 52, 36, 12, 10 ] Explanation : Split from index 2 and first part {12, 10} add to the end. Input : Arr 2 min read PHP Program to Count Zeros and Ones in Binary Representation of a Number Counting the number of zeros and ones in the binary representation of a number is a common task in computer science and programming. In this article, we will explore how to achieve this in PHP using different approaches. Table of Content Using Built-in FunctionsUsing Bitwise OperationsUsing Recursiv 5 min read PHP Program to Count 1's in a sorted binary array Given a binary array sorted in non-increasing order, count the number of 1's in it. Examples: Input: arr[] = {1, 1, 0, 0, 0, 0, 0}Output: 2Input: arr[] = {1, 1, 1, 1, 1, 1, 1}Output: 7Input: arr[] = {0, 0, 0, 0, 0, 0, 0}Output: 0A simple solution is to linearly traverse the array. The time complexit 2 min read Like