|
| 1 | +import sys |
| 2 | +import os |
| 3 | +from collections import defaultdict |
| 4 | + |
| 5 | +try: |
| 6 | + from utils import measure_time |
| 7 | +except ImportError: |
| 8 | + project_root = os.path.abspath( |
| 9 | + os.path.join(os.path.dirname(__file__), "..")) |
| 10 | + sys.path.insert(0, project_root) |
| 11 | + from utils import measure_time |
| 12 | + |
| 13 | +CURRENT_DIR = os.path.dirname(__file__) |
| 14 | +INPUT_FILE = os.path.join(CURRENT_DIR, "input.txt") |
| 15 | + |
| 16 | + |
| 17 | +@measure_time |
| 18 | +def get_most_bananas(input_file): |
| 19 | + with open(input_file, "r") as f: |
| 20 | + lines = list(map(int, f.readlines())) |
| 21 | + prices = [] |
| 22 | + |
| 23 | + for line in lines: |
| 24 | + price = [] |
| 25 | + for _ in range(2000): |
| 26 | + line = ((line * 64) ^ line) % 16777216 |
| 27 | + line = ((line // 32) ^ line) % 16777216 |
| 28 | + line = ((line * 2048) ^ line) % 16777216 |
| 29 | + price.append(line % 10) # get the last digit |
| 30 | + prices.append(price) |
| 31 | + |
| 32 | + differences = [[b - a for a, b in zip(p, p[1:])] for p in prices] |
| 33 | + |
| 34 | + amounts = defaultdict(int) |
| 35 | + for index, diff in enumerate(differences): |
| 36 | + seen = set() |
| 37 | + for i in range(len(diff) - 3): |
| 38 | + key = tuple(diff[i:i + 4]) |
| 39 | + if key in seen: |
| 40 | + continue |
| 41 | + amounts[key] += prices[index][i + 4] |
| 42 | + seen.add(key) |
| 43 | + |
| 44 | + return max(amounts.values()) |
| 45 | + |
| 46 | + |
| 47 | +if __name__ == "__main__": |
| 48 | + try: |
| 49 | + result = get_most_bananas(INPUT_FILE) |
| 50 | + print(result) |
| 51 | + except Exception as e: |
| 52 | + print(f"An error occurred: {e}") |
| 53 | + exit(1) |
| 54 | + exit(0) |
0 commit comments