id
stringlengths
19
55
category
stringclasses
4 values
metadata
listlengths
1
4
description
stringlengths
89
2.71k
input_data
stringlengths
0
1.5k
model
stringlengths
477
7.74k
decision_variables
listlengths
1
10
aplai_course__1_thick_as_thieves
aplai_course
[ "#!/usr/bin/python3", "# Source: http://www.hakank.org/minizinc/thick_as_thieves.mzn" ]
Following a robbery at Sparkles the Jeweller’s, Inspector Korner of the Yard interviewed six of the usual suspects. He knew that the getaway car had been barely big enough to hold two, so he reckoned that at least four of them were innocent - but which ones? He also supposed that the innocent ones would tell the truth, while the guilty one or ones would lie. What they actually said was: - ARTIE: "It wasn't me." - BILL: "Crackitt was in it up to his neck." - CRACKITT: "No I wasn't." - DODGY: "If Crackitt did it, Bill did it with him." - EDGY: "Nobody did it alone." - FINGERS: "That’s right: it was Artie and Dodgy together." If the good inspector’s suppositions were correct, who is guilty? Print whether each suspect is guilty or not (artie, bill, crackitt, dodgy, edgy, fingers).
# Import libraries from cpmpy import * import json # Decision Variables for each suspect representing if they are guilty artie = boolvar(name="Artie") bill = boolvar(name="Bill") crackitt = boolvar(name="Crackitt") dodgy = boolvar(name="Dodgy") edgy = boolvar(name="Edgy") fingers = boolvar(name="Fingers") suspects = [artie, bill, crackitt, dodgy, edgy, fingers] # Constraints model = Model() # At most two are guilty because the getaway car was small model += sum(suspects) <= 2 # Statement Constraints; if the suspect is guilty, they are lying, so their statement is false # Artie: "It wasn't me." artie_statement = ~artie model += artie == ~artie_statement # Bill: "Crackitt was in it up to his neck." bill_statement = crackitt model += bill == ~bill_statement # Crackitt: "No I wasn't." crackitt_statement = ~crackitt model += crackitt == ~crackitt_statement # Dodgy: "If Crackitt did it, Bill did it with him." dodgy_statement = crackitt.implies(bill) model += dodgy == ~dodgy_statement # Edgy: "Nobody did it alone." edgy_statement = sum(suspects) > 1 model += edgy == ~edgy_statement # Fingers: "That’s right: it was Artie and Dodgy together." fingers_statement = artie & dodgy model += fingers == ~fingers_statement # Solve model.solve() # Print the solution solution = { "artie": int(artie.value()), "bill": int(bill.value()), "crackitt": int(crackitt.value()), "dodgy": int(dodgy.value()), "edgy": int(edgy.value()), "fingers": int(fingers.value()) } print(json.dumps(solution)) # End of CPMPy script
[ "dodgy", "fingers", "edgy", "bill", "artie", "crackitt" ]