You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
995 B

3 years ago
import numpy as np
def readFish():
3 years ago
with open("input") as file:
3 years ago
return np.array(file.read().split(","), dtype=np.uint8)
3 years ago
def getCount(fish, daysLeft, usedList, usedMap):
if daysLeft <= fish:
return 1
if usedList[fish][daysLeft]:
return usedMap[(fish, daysLeft)]
count = 1
for d in range(0, daysLeft - fish, 7):
count += getCount(9, daysLeft - fish - d, usedList, usedMap)
usedList[fish][daysLeft] = True
usedMap[(fish, daysLeft)] = count
return count
3 years ago
def solve(days):
3 years ago
# need to save/read known results for performance
usedMap = {}
usedList = np.zeros((10, days + 1), bool)
fish = readFish()
3 years ago
count = 0
for f in fish:
3 years ago
count += getCount(f, days, usedList, usedMap)
# numpy version too slow for part 2
# for i in range(days):
# decrease = fish > 0
# zeros = fish == 0
# fish[decrease] -= 1
# fish[zeros] = 6
# fish = np.concatenate((fish, zeros[zeros].astype(np.uint8) * 8))
# print(i, len(fish))
3 years ago
3 years ago
return count
3 years ago
3 years ago
print(solve(80))
print(solve(256))
3 years ago