mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Move 2015 out of the way.
This commit is contained in:
20
2015/day-24/solution.py
Normal file
20
2015/day-24/solution.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from __future__ import print_function, division
|
||||
import fileinput
|
||||
import itertools
|
||||
import functools
|
||||
import operator
|
||||
|
||||
def qes(packageList):
|
||||
return functools.reduce(operator.mul, packageList)
|
||||
|
||||
def minQES(packages, slots):
|
||||
targetWeight = sum(packages) // slots
|
||||
for i in range(1, len(packages)):
|
||||
solutions = [x for x in itertools.combinations(packages, i) if sum(x) == targetWeight]
|
||||
if len(solutions) > 0:
|
||||
return min(qes(x) for x in solutions)
|
||||
|
||||
packages = set([int(x) for x in fileinput.input()])
|
||||
|
||||
print(minQES(packages, 3))
|
||||
print(minQES(packages, 4))
|
||||
Reference in New Issue
Block a user