You could consider the problem as a state machine, with an infinite amount of nodes. From each node, there are only a finite number of transitions: fill X from supply, fill Y from supply, pour X in Y, pour X in Z, pour Y in X, pour Y in Z, pour Z in X, pour Z in Y, empty X and empty Y.
So, I'd apply Dijkstra's algorithm. Start with a queue containing a single state (X = Y = Z = 0). Now, loop and do the following:
- Pop a state from the queue.
- For each transition, apply the transition to the popped state, creating a new state. For each such state:
- If the new state satisfies the condition, you're done.
- Else, if we've seen this state before, try next transition.
- Otherwise, put the state at the back of the queue.
This will garantee you find a solution with the minimal number of steps needed.
The drawback is that the algorithm will not terminate if there is no solution. Nor is it necessarely efficient.
You can easily change the algorithm to find the solution using the smallest amount of water to keep track of the amount of water used, and keeping the queue partially ordered (a heap will do) on water usage.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.