-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy path14. Poor Pigs.cpp
40 lines (31 loc) · 1.41 KB
/
14. Poor Pigs.cpp
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
/*
Poor Pigs
=========
There are 1000 buckets, one and only one of them is poisonous, while the rest are filled with water. They all look identical. If a pig drinks the poison it will die within 15 minutes. What is the minimum amount of pigs you need to figure out which bucket is poisonous within one hour?
Answer this question, and write an algorithm for the general case.
General case:
If there are n buckets and a pig drinking poison will die within m minutes, how many pigs (x) you need to figure out the poisonous bucket within p minutes? There is exactly one bucket with poison.
Note:
A pig can be allowed to drink simultaneously on as many buckets as one would like, and the feeding takes no time.
After a pig has instantly finished drinking buckets, there has to be a cool down time of m minutes. During this time, only observation is allowed and no feedings at all.
Any given bucket can be sampled an infinite number of times (by an unlimited number of pigs).
Hint #1
What if you only have one shot? Eg. 4 buckets, 15 mins to die, and 15 mins to test.
Hint #2
How many states can we generate with x pigs and T tests?
Hint #3
Find minimum x such that (T+1)^x >= N
*/
class Solution
{
public:
int poorPigs(int buckets, int minutesToDie, int minutesToTest)
{
int tests = minutesToTest / minutesToDie;
tests++;
int pigs = 0;
while (pow(tests, pigs) < buckets)
pigs++;
return pigs;
}
};