Skip to content

Instantly share code, notes, and snippets.

@zsrinivas
Created March 29, 2015 11:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zsrinivas/027531207ada11d6cb31 to your computer and use it in GitHub Desktop.
Save zsrinivas/027531207ada11d6cb31 to your computer and use it in GitHub Desktop.
spoj POUR1 - Pouring water | http://www.spoj.com/problems/POUR1/
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# pylint: disable=invalid-name,missing-docstring,bad-builtin
from sys import stdin
from collections import deque
def main():
def steps(a, b, c):
queue = deque([(0, 0), (-1, -1)])
visited = set()
count = 0
while len(queue) > 1:
x, y = queue.popleft()
if x == -1 == y:
count += 1
queue.append((-1, -1))
continue
if x == c or y == c:
return count
if (x, y) in visited:
continue
visited.add((x, y))
for p in [
(0, y), (x, 0), (a, y), (x, b),
(x - min(x, b - y), y + min(x, b - y)),
(x + min(y, a - x), y - min(y, a - x))]:
if p not in visited and p != (x, y):
queue.append(p)
return -1
dstream = map(int, stdin.readlines())
for t in xrange(dstream[0]):
a, b, c = dstream[3*t + 1], dstream[3*t + 2], dstream[3*t + 3]
print steps(a, b, c)
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment