|
6
|
|
edited Dec 8 '08 at 19:13
|
Here's a solution in Python based on constraint-programming:
from constraint import AllDifferentConstraint, InSetConstraint, Problem
# variables
colors = "blue red green white yellow".split()
nationalities = "Norwegian German Dane Swede English".split()
pets = "birds dog cats horse zebra".split()
drinks = "tea coffee milk beer water".split()
cigarettes = "Blend, Prince, Blue Master, Dunhill, Pall Mall".split(", ")
# There are five houses.
minn, maxn = 1, 5
problem = Problem()
# value of a variable is the number of a house with corresponding property
variables = colors + nationalities + pets + drinks + cigarettes
problem.addVariables(variables, range(minn, maxn+1))
# Each house has its own unique color.
# All house owners are of different nationalities.
# They all have different pets.
# They all drink different drinks.
# They all smoke different cigarettes.
for vars_ in (colors, nationalities, pets, drinks, cigarettes):
problem.addConstraint(AllDifferentConstraint(), vars_)
# In the middle house they drink milk.
#NOTE: interpret "middle" in a numerical sense (not geometrical)
problem.addConstraint(InSetConstraint([(minn + maxn) // 2]), ["milk"])
# The Norwegian lives in the first house.
#NOTE: interpret "the first" as a house number
problem.addConstraint(InSetConstraint([minn]), ["Norwegian"])
# The green house is on the left side of the white house.
#XXX: what is "the left side"? (linear, circular, two sides, 2D house arrangment)
#NOTE: interpret it as 'green house number' + 1 == 'white house number'
problem.addConstraint(lambda a,b: a+1 == b, ["green", "white"])
def add_constraints(constraint, statements, variables=variables, problem=problem):
for stmt in (line for line in statements if line.strip()):
problem.addConstraint(constraint, [v for v in variables if v in stmt])
and_statements = """
They drink coffee in the green house.
The man who smokes Pall Mall has birds.
The English man lives in the red house.
The Dane drinks tea.
In the yellow house they smoke Dunhill.
The man who smokes Blue Master drinks beer.
The German smokes Prince.
The Swede has a dog.
""".split("\n")
add_constraints(lambda a,b: a == b, and_statements)
nextto_statements = """
The man who smokes Blend lives in the house next to the house with cats.
In the house next to the house where they have a horse, they smoke Dunhill.
The Norwegian lives next to the blue house.
They drink water in the house next to the house where they smoke Blend.
""".split("\n")
#XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment)
add_constraints(lambda a,b: abs(a - b) == 1, nextto_statements)
def solve(varialbes=variablessolve(variables=variables, problem=problem):
from itertools import groupby
from operator import itemgetter
# find & print solutions
for solution in problem.getSolutionIter():
for key, group in groupby(sorted(solution.iteritems(), key=itemgetter(1)), key=itemgetter(1)):
print key,
for v in sorted(dict(group).keys(), key=variables.index):
print v.ljust(9),
print
if __name__ == '__main__':
solve()
Output:
1 yellow Norwegian cats water Dunhill
2 blue Dane horse tea Blend
3 red English birds milk Pall Mall
4 green German zebra coffee Prince
5 white Swede dog beer Blue Master
It takes 0.6 seconds (CPU 1.5GHz) to find the solution.
The answer is "German owns zebra."
To install the constraint module:
|
|
|
|
5
|
|
edited Nov 27 '08 at 22:52
|
Here's a solution in Python based on constraint-programming:
from constraint import AllDifferentConstraint, InSetConstraint, Problem
# variables
colors = "blue red green white yellow".split()
nationalities = "Norwegian German Dane Swede English".split()
pets = "birds dog cats horse zebra".split()
drinks = "tea coffee milk beer water".split()
cigarettes = "Blend, Prince, Blue Master, Dunhill, Pall Mall".split(", ")
# There are five houses.
minn, maxn = 1, 5
problem = Problem()
# value of a variable is the number of a house with corresponding property
variables = colors + nationalities + pets + drinks + cigarettes
problem.addVariables(variables, range(minn, maxn+1))
# Each house has its own unique color.
# All house owners are of different nationalities.
# They all have different pets.
# They all drink different drinks.
# They all smoke different cigarettes.
for vars_ in (colors, nationalities, pets, drinks, cigarettes):
problem.addConstraint(AllDifferentConstraint(), vars_)
# In the middle house they drink milk.
#NOTE: interpret "middle" in a numerical sense (not geometrical)
problem.addConstraint(InSetConstraint([(minn + maxn) // 2]), ["milk"])
# The Norwegian lives in the first house.
#NOTE: interpret "the first" as a house number
problem.addConstraint(InSetConstraint([minn]), ["Norwegian"])
# The green house is on the left side of the white house.
#XXX: what is "the left side"? (linear, circular, two sides, 2D house arrangment)
#NOTE: interpret it as 'green house number' + 1 == 'white house number'
problem.addConstraint(lambda a,b: a+1 == b, ["green", "white"])
def add_constraints(constraint, statements, variables=variables, problem=problem):
for stmt in (line for line in statements if line.strip()):
problem.addConstraint(constraint, [v for v in variables if v in stmt])
and_statements = """
They drink coffee in the green house.
The man who smokes Pall Mall has birds.
The English man lives in the red house.
The Dane drinks tea.
In the yellow house they smoke Dunhill.
The man who smokes Blue Master drinks beer.
The German smokes Prince.
The Swede has a dog.
""".split("\n")
add_constraints(lambda a,b: a == b, and_statements)
nextto_statements = """
The man who smokes Blend lives in the house next to the house with cats.
In the house next to the house where they have a horse, they smoke Dunhill.
The Norwegian lives next to the blue house.
They drink water in the house next to the house where they smoke Blend.
""".split("\n")
#XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment)
add_constraints(lambda a,b: abs(a - b) == 1, nextto_statements)
def solve(varialbes=variables, problem=problem):
from itertools import groupby
from operator import itemgetter
# find solutions
try: solutions = problem.getSolutionIter()
except NotImplementedError:
solutions = iter(problem.getSolution(), None)
# & print solutions
item1 = itemgetter(1)
for solution in solutionsproblem.getSolutionIter():
for key, group in groupby(sorted(solution.iteritems(), key=item1)key=itemgetter(1)), key=item1)key=itemgetter(1)):
print key,
for v in sorted(dict(group).keys(), key=variables.index):
print v.ljust(9),
print
if __name__ == '__main__':
solve()
Output:
1 yellow Norwegian cats water Dunhill
2 blue Dane horse tea Blend
3 red English birds milk Pall Mall
4 green German zebra coffee Prince
5 white Swede dog beer Blue Master
It takes 0.6 seconds (CPU 1.5GHz) to find the solution.
The answer is "German owns zebra."
To install the constraint module:
|
|
|
|
4
|
|
edited Nov 27 '08 at 22:43
|
from constraint import AllDifferentConstraint, InSetConstraint, Problem# possible properties# value of a property variable is the house number that has itproblem.addVariables(colors of a house with corresponding propertyvariables = colors + nationalities + pets + drinks + cigarettesfor props vars_ in (colors, nationalities, pets, drinks, cigarettes): problem.addConstraint(AllDifferentConstraint(), propsvars_)#XXX: NOTE: interpret "middle" in a numerical sense (not geometrical)problem.addConstraint(lambda a: a == (minn problem.addConstraint(InSetConstraint([(minn + maxn) // 22]), ["milk"])#XXX: NOTE: interpret "the first" as a house numberproblem.addConstraint(lambda a: a == minnproblem.addConstraint(InSetConstraint([minn]), ["Norwegian"])#XXX: NOTE: interpret it as 'green house number' + 1 == 'white house number'def and_(p1add_constraints(constraint, p2)statements, variables=variables, problem=problem): """Whether at least one house has all provided properties.""" ####problem.addConstraint(AllEqualConstraint(), [p1, p2]) problem.addConstraint(lambda a,bfor stmt in (line for line in statements if line.strip()): a == bproblem.addConstraint(constraint, [p1, p2]v for v in variables if v in stmt])# and_statements = """and_("coffee", "green")and_("Pall Mall", "birds")and_("English", "red")and_("Dane", "tea")and_("yellow", "Dunhill")and_("Blue Master", "beer")and_("German", "Prince")and_("Swede", "dog")def nextto(p1, p2)"".split("\n")add_constraints(lambda a,b: """Whether the house next to a house with `p1` has `p2`.""" #XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment) problem.addConstraint(lambda a, b: abs(a - b) == 1b, [p1, p2]and_statements)# nextto_statements = """nextto("cats", "Blend")nextto("horse", "Dunhill")nextto("blue", "Norwegian") nextto("Blend", "water")#XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment)add_constraints(lambda a,b: abs(a - b) == 1, nextto_statements)def print_solution(problem)solve(varialbes=variables, problem=problem): import sys # find solutions solutions = [problem.getSolution()] print("Solution(s):"iter(problem.getSolution(), None) # print solutions if solution is None: break print(keyprint key, dict(group).keys()) for v in sorted(dict(group).keys(), key=variables.index): print print("end") sys.exit()print_solution(problemv.ljust(9),if __name__ == '__main__': solve()Solution(s):(1, ['water', 'Norwegian', 'Dunhill', 'cats', 'yellow'])(2, ['blue', 'tea', 'Dane', 'Blend', 'horse'])(3, ['birds', '1 yellow Norwegian cats water Dunhill 2 blue Dane horse tea Blend 3 red English birds milk Pall Mall', 'milk', 'red', 'English'])(4, ['German', 'coffee', 'green', 'zebra', 'Prince'])(5, ['beer', 'white', 'Mall4 green German zebra coffee Prince 5 white Swede dog beer Blue Master', 'Swede', 'dog'])
|
|
|
|
3
|
|
edited Nov 27 '08 at 3:09
|
Here is an incorrect Here's a solution in Python , but it shows how such problems could be solved programmaticallybased on constraint-programming:
from constraint import AllDifferentConstraint, Problem
# possible properties
colors = "blue red green white yellow".split()
nationalities = "Norwegian German Dane Swede English".split()
pets = "birds dog cats horse zebra".split()
drinks = "tea coffee milk beer water".split()
cigarettes = "Blend, Prince, Blue Master, Dunhill, Pall Mall".split(", ")
# There are five houses.
minn, maxn = 1, 5
problem = Problem()
# value of a property is the house number that has it
problem.addVariables(colors + nationalities + pets + drinks + cigarettes,
range(minn, maxn+1))
# Each house has its own unique color.
# All house owners are of different nationalities.
# They all have different pets.
# They all drink different drinks.
# They all smoke different cigarettes.
for props in (colors, nationalities, pets, drinks, cigarettes):
problem.addConstraint(AllDifferentConstraint(), props)
# In the middle house they drink milk.
#XXX: interpret "middle" in a numerical sense (not geometrical)
problem.addConstraint(lambda a: a == (minn + maxn) // 2, ["milk"])
# The Norwegian lives in the first house.
#XXX: interpret "the first" as a house number
problem.addConstraint(lambda a: a == minn, ["Norwegian"])
# The green house is on the left side of the white house.
#XXX: what is "the left side"? (linear, circular, two sides, 2D house arrangment)
#XXX: odd numbers on the left side of the street, and even interpret it as 'green house numberon the right.
' + 1 == 'white house number'
problem.addConstraint(lambda a,b: (a&1 - b&1) a+1 == 1b, ["green", "white"])
def and_(p1, p2):
"""Whether at least one house has all provided properties."""
####problem.addConstraint(AllEqualConstraint(), [p1, p2])
problem.addConstraint(lambda a,b: a == b, [p1, p2])
# They drink coffee in the green house.
and_("coffee", "green")
# The man who smokes Pall Mall has birds.
and_("Pall Mall", "birds")
# The English man lives in the red house.
and_("English", "red")
# The Dane drinks tea.
and_("Dane", "tea")
# In the yellow house they smoke Dunhill.
and_("yellow", "Dunhill")
# The man who smokes Blue Master drinks beer.
and_("Blue Master", "beer")
# The German smokes Prince.
and_("German", "Prince")
# The Swede has a dog.
and_("Swede", "dog")
def nextto(p1, p2):
"""Whether the house next to a house with `p1` has `p2`."""
#XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment)
problem.addConstraint(lambda a, b: abs(a - b) == 1, [p1, p2])
# The man who smokes Blend lives in the house next to the house with cats.
nextto("cats", "Blend")
# In the house next to the house where they have a horse, they smoke Dunhill.
nextto("horse", "Dunhill")
# The Norwegian lives next to the blue house.
nextto("blue", "Norwegian")
# They drink water in the house next to the house where they smoke Blend.
nextto("Blend", "water")
def print_solution(problem):
import sys
from itertools import groupby
from operator import itemgetter
print("Solution(s):")
item1 = itemgetter(1)
try: solutions = problem.getSolutionIter()
except NotImplementedError:
solutions = [problem.getSolution()]
print("Solution(s):")
item1 = itemgetter(1)
for solution in solutions:
if solution is None: break
for key, group in groupby(sorted(solution.iteritems(), key=item1), key=item1):
print(key, dict(group).keys())
print
print("end")
sys.exit()
print_solution(problem)
Output:
Solution(s):
(1, ['water', 'Norwegian', 'Dunhill', 'cats', 'yellow'])
(2, ['blue', 'tea', 'Dane', 'Blend', 'horse'])
(3, ['birds', 'Pall Mall', 'milk', 'red', 'English'])
(4, ['beer', 'German', 'white', coffee', 'Blue Master', green', 'Swede', zebra', 'dog'])
Prince'])
(5, ['German', 'beer', 'coffee', white', 'green', Blue Master', 'zebra', Swede', 'Prince'])
dog'])
end
It takes 0.6 seconds (CPU 1.5GHz) to find the solution.
The correct answer : is "German owns zebra."is by accident.
To install the constraint module:
|
|
|
|
2
|
|
edited Nov 26 '08 at 15:28
|
Here is an incorrect solution in Python, but it shows how such problems could be solved programmatically:
from constraint import AllDifferentConstraint, Problem
# possible properties
colors = "blue red green white yellow".split()
nationalities = "Norwegian German Dane Swede English".split()
pets = "birds dog cats horse zebra".split()
drinks = "tea coffee milk beer water".split()
cigarettes = "Blend, Prince, Blue Master, Dunhill, Pall Mall".split(", ")
# There are five houses.
minn, maxn = 1, 5
problem = Problem()
# value of a property is the house number that has it
problem.addVariables(colors + nationalities + pets + drinks + cigarettes,
range(minn, maxn+1))
# Each house has its own unique color.
# All house owners are of different nationalities.
# They all have different pets.
# They all drink different drinks.
# They all smoke different cigarettes.
for props in (colors, nationalities, pets, drinks, cigarettes):
problem.addConstraint(AllDifferentConstraint(), props)
# In the middle house they drink milk.
#XXX: interpret "middle" in a numerical sense (not geometrical)
problem.addConstraint(lambda a: a == (minn + maxn) // 2, ["milk"])
# The Norwegian lives in the first house.
#XXX: interpret "the first" as a house number
problem.addConstraint(lambda a: a == minn, ["Norwegian"])
# The green house is on the left side of the white house.
#XXX: what is "the left side"? (linear, circular, two sides, 2D house arrangment)
#XXX: odd numbers on the left side of the street, and even number on the right.
problem.addConstraint(lambda a,b: (a&1 - b&1) == 1, ["green", "white"])
def and_(p1, p2):
"""Whether at least one house has all provided properties."""
####problem.addConstraint(AllEqualConstraint(), [p1, p2])
problem.addConstraint(lambda a,b: a == b, [p1, p2])
# They drink coffee in the green house.
and_("coffee", "green")
# The man who smokes Pall Mall has birds.
and_("Pall Mall", "birds")
# The English man lives in the red house.
and_("English", "red")
# The Dane drinks tea.
and_("Dane", "tea")
# In the yellow house they smoke Dunhill.
and_("yellow", "Dunhill")
# The man who smokes Blue Master drinks beer.
and_("Blue Master", "beer")
# The German smokes Prince.
and_("German", "Prince")
# The Swede has a dog.
and_("Swede", "dog")
def nextto(p1, p2):
"""Whether the house next to a house with `p1` has `p2`."""
#XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment)
problem.addConstraint(lambda a, b: abs(a - b) == 1, [p1, p2])
# The man who smokes Blend lives in the house next to the house with cats.
nextto("cats", "Blend")
# In the house next to the house where they have a horse, they smoke Dunhill.
nextto("horse", "Dunhill")
# The Norwegian lives next to the blue house.
nextto("blue", "Norwegian")
# They drink water in the house next to the house where they smoke Blend.
nextto("Blend", "water")
def print_solution(problem):
import sys
from itertools import groupby
from operator import itemgetter
print("Solution(s):")
item1 = itemgetter(1)
try: solutions = problem.getSolutionIter()
except NotImplementedError:
solutions = [problem.getSolution()]
for solution in solutions:
if solution is None: break
for key, group in groupby(sorted(solution.iteritems(), key=item1), key=item1):
print(key, dict(group).keys())
print
print("end")
sys.exit()
print_solution(problem)
Output:
Solution(s):
(1, ['water', 'Norwegian', 'Dunhill', 'cats', 'yellow'])
(2, ['blue', 'tea', 'Dane', 'Blend', 'horse'])
(3, ['birds', 'Pall Mall', 'milk', 'red', 'English'])
(4, ['beer', 'white', 'Blue Master', 'Swede', 'dog'])
(5, ['German', 'coffee', 'green', 'zebra', 'Prince'])
end
It takes 0.6 seconds (CPU 1.5GHz) to find the solution.
The correct answer: "German owns zebra." is by accident.
To install the constraint module:
|
|
|
|
1
|
|
answered Nov 26 '08 at 14:59
|
Here is an incorrect solution in Python, but it shows how such problems could be solved programmatically:
from constraint import AllDifferentConstraint, Problem
# possible properties
colors = "blue red green white yellow".split()
nationalities = "Norwegian German Dane Swede English".split()
pets = "birds dog cats horse zebra".split()
drinks = "tea coffee milk beer water".split()
cigarettes = "Blend, Prince, Blue Master, Dunhill, Pall Mall".split(", ")
# There are five houses.
minn, maxn = 1, 5
problem = Problem()
# value of a property is the house number that has it
problem.addVariables(colors + nationalities + pets + drinks + cigarettes,
range(minn, maxn+1))
# Each house has its own unique color.
# All house owners are of different nationalities.
# They all have different pets.
# They all drink different drinks.
# They all smoke different cigarettes.
for props in (colors, nationalities, pets, drinks, cigarettes):
problem.addConstraint(AllDifferentConstraint(), props)
# In the middle house they drink milk.
#XXX: interpret "middle" in a numerical sense (not geometrical)
problem.addConstraint(lambda a: a == (minn + maxn) // 2, ["milk"])
# The Norwegian lives in the first house.
#XXX: interpret "the first" as a house number
problem.addConstraint(lambda a: a == minn, ["Norwegian"])
# The green house is on the left side of the white house.
#XXX: what is "the left side"? (linear, circular, two sides, 2D house arrangment)
#XXX: odd numbers on the left side of the street, and even number on the right.
problem.addConstraint(lambda a,b: (a&1 - b&1) == 1, ["green", "white"])
def and_(p1, p2):
"""Whether at least one house has all provided properties."""
####problem.addConstraint(AllEqualConstraint(), [p1, p2])
problem.addConstraint(lambda a,b: a == b, [p1, p2])
# They drink coffee in the green house.
and_("coffee", "green")
# The man who smokes Pall Mall has birds.
and_("Pall Mall", "birds")
# The English man lives in the red house.
and_("English", "red")
# The Dane drinks tea.
and_("Dane", "tea")
# In the yellow house they smoke Dunhill.
and_("yellow", "Dunhill")
# The man who smokes Blue Master drinks beer.
and_("Blue Master", "beer")
# The German smokes Prince.
and_("German", "Prince")
# The Swede has a dog.
and_("Swede", "dog")
def nextto(p1, p2):
"""Whether the house next to a house with `p1` has `p2`."""
#XXX: what is "next to"? (linear, circular, two sides, 2D house arrangment)
problem.addConstraint(lambda a, b: abs(a - b) == 1, [p1, p2])
# The man who smokes Blend lives in the house next to the house with cats.
nextto("cats", "Blend")
# In the house next to the house where they have a horse, they smoke Dunhill.
nextto("horse", "Dunhill")
# The Norwegian lives next to the blue house.
nextto("blue", "Norwegian")
# They drink water in the house next to the house where they smoke Blend.
nextto("Blend", "water")
def print_solution(problem):
import sys
from itertools import groupby
from operator import itemgetter
print("Solution(s):")
item1 = itemgetter(1)
try: solutions = problem.getSolutionIter()
except NotImplementedError:
solutions = [problem.getSolution()]
for solution in solutions:
if solution is None: break
for key, group in groupby(sorted(solution.iteritems(), key=item1), key=item1):
print(key, dict(group).keys())
print
print("end")
sys.exit()
print_solution(problem)
Output:
Solution(s):
(1, ['water', 'Norwegian', 'Dunhill', 'cats', 'yellow'])
(2, ['blue', 'tea', 'Dane', 'Blend', 'horse'])
(3, ['birds', 'Pall Mall', 'milk', 'red', 'English'])
(4, ['beer', 'white', 'Blue Master', 'Swede', 'dog'])
(5, ['German', 'coffee', 'green', 'zebra', 'Prince'])
end
The correct answer: "German owns zebra." is by accident.
To install the constraint module:
|
|
|