vote up -1 vote down star

I brought this to SO, to ask people how to write a code to do it. The other day i was reading a question over Tower of Hanoi problem, and i remembered when the first time i saw/discussed in one of the classes (i think DS), it was easy to find the logic to solve the question. And still was never able to implement it. Later, when the programming solution was discussed, I was like ah yes. The point is, not all the puzzles so called programmer-puzzles asked in interviews to check "if you can code" are programmable. Especially for this one, when i tried to implement a solution for the below mentioned puzzle, all i could write was an iterative solution, which was so specific, that it looked like as if am just coding the liter division from paper into C.

The question:

There are two bottles of 10 liter each filled with water. Now two persons having bottles of 4 liter and 5 liters want to take 2-2 liters of water from the previous bottles. And you have to pour the water without wasting or throwing it.

Just like Tower of Hanoi, which i thought at point is not possible to code, but it was, may be same is true for this one, to wpf such question which are generic in nature (i mean by changing the values of bottles or outputs).

flag

2  
What do you mean with 'wpf' in this context? – Henk Holterman Jul 19 at 12:51
I meant, is it possible to express the solution in code, like for TOH, for a novice it might look its not possible, if u keep changing the no of rings. But it is possible, so is it possible to write or find a generic solution to check if the division is possible, and if we change the values. I just could not think of anything, but of course that's also my skill problem. – Vivek Sharma Jul 19 at 12:55
Down-Voted :), anyways but Rich provided a nice point. – Vivek Sharma Jul 19 at 13:30
But what do the letters "wpf" stand for? – John Saunders Jul 20 at 1:21
I get the feeling that these problems are extremely trivial when you use a language like Prolog or Alloy. – NomeN Aug 31 at 21:28

closed as not programming related by Neil Butterworth, starblue, gbjbaanb, John Saunders, Shog9 Jul 20 at 6:12

1 Answer

vote up 2 vote down check

Here's my solution, it may not be the quickest, but it looks like it works.

4 litre is A 5 litre is B 10 litre bottles are C and D

Fill B from C (A has 0, B has 5, C has 5, D has 10)
Fill A from B (A has 4, B has 1, C has 5, D has 10)
Pour A into C (A has 0, B has 1, C has 9, D has 10)
Pour B into A (A has 1, B has 0, C has 9, D has 10)
Fill B from C (A has 1, B has 5, C has 4, D has 10)
Fill A from B (A has 4, B has 2, C has 4, D has 10)
Pour A into C (A has 0, B has 2, C has 8, D has 10)
Fill A from D (A has 4, B has 2, C has 8, D has 6)
Fill C from A (A has 2, B has 2, C has 10, D has 6)

Not sure if there is an algorithm for the general case. I don't think it works quite like TOH as you have more degrees of freedom, so a simple recursion won't necessarily ever solve it.

Ones that spring to mind are:

  • Number of bottles
  • Size of each bottle
  • Initial fill of each bottle
  • Required capacity

Update: There's a section of the Wikipedia entry on Tower of Hanoi that talks about this kind of problem. The extra variables make any solution non-trivial.

link|flag
@Rich-- yes, ofcourse, nice way to put it, we have to restrict the degrees of freedom, so that it could be more manageable. Right. – Vivek Sharma Jul 19 at 13:29
So if we go by this, then what should be the DoF for ToH. One (no of rings). As poles are fixed. – Vivek Sharma Jul 19 at 13:31
The only variable in ToH is the number of poles, assuming the number of disks is set to make the problem require the maximum moves (2^n -1) to solve. – Rich Seller Jul 19 at 14:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.