forked from sauravgpt2/hacktoberfest36_2021
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEgg-Dropping-Puzzle.cpp
More file actions
45 lines (38 loc) · 1.17 KB
/
Egg-Dropping-Puzzle.cpp
File metadata and controls
45 lines (38 loc) · 1.17 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
43
44
45
/* Function to get minimun number of trials needed
* in worst case with n eggs and k floors
*/
#include <iostream>
#include <climits>
using namespace std;
int eggDrop(int n, int k) {
int eggFloor[n+1][k+1];
int result;
for(int i=1; i<=n; i++) {
eggFloor[i][1] = 1; //n eggs..1 Floor
eggFloor[i][0] = 0; //n eggs..0 Floor
}
// Only one egg available
for(int j=1; j<=k ; j++) {
eggFloor[1][j] = j;
}
for(int i=2; i<=n; i++) {
for(int j=2; j<=k; j++) {
eggFloor[i][j] = INT_MAX;
for(int x=1; x<=j; x++) {
// 1+max(eggBreak[one less egg, lower floors],
// eggDoesntBreak[same # of eggs, upper floors]);
result = 1 + max(eggFloor[i-1][x-1], eggFloor[i][j-x]);
if(result < eggFloor[i][j])
eggFloor[i][j] = result;
}
}
}
return eggFloor[n][k];
}
int main() {
int n, k;
cout << "Enter number of eggs and floors: ";
cin>>n>>k;
cout << "Minimum number of trials in worst case: " << eggDrop(n, k) << endl;
return 0;
}