Skip to main content

[PUZZLE] ELEPHANT AND BANANA PUZZLE

A merchant has bough some 3000 banana from market and want to bring them to his home which is 1000 km far from Market. He have a elephant which can carry maximum of 1000/- banana at time. That could have been easy but this elephant is very shrewd and he charges 1 banana for every one kilometer he travel.

Now we have to maximise number of banana which should reach to home.

Solution:

At present we are at 0th km with 3000 banana and elephant.
Lets see if elephant have to shift all the 3000 banana and elephant by 1 km.

For 1 km shift:

Take first 1000 banana and drop at 1st km. 2 banana consumed. One banana each for to and fro.
Second  1000 banana and drop at 1st km. 2 banana consumed.
Third 1000 banana and reach at 1st km. 1 banana consumed.

So all in all total 5 banana will be consumed if we shift a kilometer.

But that's not all, our total banana number are also reducing so we may have to reduce the number of turns too. And this will happen once we have reduced the banana by 1000 number. That means to reduce the count of banana by 1000 for first move we have to shift base to 200 km. See 5 banana for 1 km ratio i.e. 1000 banana / 5 = 200 km.

So we are now at 200th KMs with 2000 banana and elephant.

Post 200 km, for every 1 km shift in base;

Take first 1000 banana and drop at 1st km. 2 banana consumed. One banana each for to and fro.
Third 1000 banana and reach at 1st km. 1 banana consumed.

So all in all total 3 banana will be consumed if we shift a kilometer post 200 kms. 

Now the second phase will be to reduce the 1000 banana. So we can move to 1000/3 = 333.3 km maximum in this phase. 

So we will be moved to (200 + 333.3) 533.3  km base with 1000 banana.

Now onward we need only 1 banana for every km shift as elephant can carry all the 1000 banana and need not to come back. 
So out of 1000 banana, elephant will consume (1000 - 533.3) more banana to reach home.  

And total saved banana will be (1000 -(1000 -533.3)) = 533.3 banana. 

Comments

Popular posts from this blog

Car Parking Problem

There is n parking slots and n-1 car already parked. Lets say car parked with initial arrangement and we want to make the car to be parked to some other arrangement. Lets say n = 5, inital = free, 3, 4, 1, 2 desired = 1, free, 2, 4 ,3 Give an algorithm with minimum steps needed to get desired arrangement. Told by one of my friend and after a lot of search i really got a nice solution. I will post solution in comment part

Median of Five Numbers

U have 5 NOs , X1,X2,X3,X4,X5 With minimum no. of comparisons we have to find a median. SWAP(X,Y) function is available to u . I have a answer of six comparisons and eight swaps....wait for people to find out by themselves.

Consistent Hashing

I will try to explain consistent hashing with a real world example. Let's assume I have a restaurant with 60 tables and 5 servers (waiter). Each server is given an equal number of tables to serve. Now let's assume we have addition of a new server (waiter), so his addition will be marked in the circle and he will be receiving tables from the previous server to his distance only. Check the attached example. Assume a server (waiter) has left the organisation and we have only 4 servers now. Server3 has left the restaurant, so his table will be assigned to server 4. I am sure you have noticed the load is not equally distributed. But to make the system less prone to addition/removal we just rotate in clockwise and assign range from the previous server to present server.  To make sure load is balanced or optimally balanced we need to use virtual nodes. Check links here: http://tom-e-white.com/2007/11/consistent-hashing.html https://www.toptal.com/big-data/...