Update day11.py

This commit is contained in:
kamoshi 2020-12-11 18:57:24 +01:00 committed by GitHub
parent b08631fb85
commit 6f34f3ea23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
from typing import Union from typing import Union, Callable
def parse_data() -> list[str]: def parse_data() -> list[str]:
@ -11,7 +11,7 @@ def parse_data() -> list[str]:
# Count occupied seats *adjacent* to the seat at position (x, y) # Count occupied seats *adjacent* to the seat at position (x, y)
def count_occupied_adj(x: int, y: int, data: list[str]) -> int: def count_adjacent(x: int, y: int, data: list[str]) -> int:
def check_occupied(_x: int, _y: int, _data: list[str]) -> int: def check_occupied(_x: int, _y: int, _data: list[str]) -> int:
if 0 <= _x < len(data[0]) and 0 <= _y < len(data): if 0 <= _x < len(data[0]) and 0 <= _y < len(data):
@ -26,14 +26,14 @@ def count_occupied_adj(x: int, y: int, data: list[str]) -> int:
return result return result
def generate_new_grid(past_data: list[str]): def generate_new_grid(past_data: list[str], counting_func: Callable, threshold: int):
output = [] output = []
for y in range(len(past_data)): for y in range(len(past_data)):
line = "" line = ""
for x in range(len(past_data[0])): for x in range(len(past_data[0])):
if past_data[y][x] == "#" and count_occupied_adj(x, y, past_data) >= 4: if past_data[y][x] == "#" and counting_func(x, y, past_data) >= threshold:
new_char = 'L' new_char = 'L'
elif past_data[y][x] == 'L' and count_occupied_adj(x, y, past_data) == 0: elif past_data[y][x] == 'L' and counting_func(x, y, past_data) == 0:
new_char = '#' new_char = '#'
else: else:
new_char = past_data[y][x] new_char = past_data[y][x]
@ -42,6 +42,8 @@ def generate_new_grid(past_data: list[str]):
return output return output
def find_stable_state(grid: list[str], counting_func: Callable, threshold: int = 4, limit_iter: int = 10000) -> Union[None, list[str]]:
def is_it_different(old_data: list[str], new_data: list[str]) -> bool: def is_it_different(old_data: list[str], new_data: list[str]) -> bool:
for y in range(len(old_data)): for y in range(len(old_data)):
for x in range(len(old_data[0])): for x in range(len(old_data[0])):
@ -49,10 +51,8 @@ def is_it_different(old_data: list[str], new_data: list[str]) -> bool:
return True return True
return False return False
def find_stable_state(grid: list[str], limit_iter: int = 10000) -> Union[None, list[str]]:
for i in range(limit_iter): for i in range(limit_iter):
new_state = generate_new_grid(grid) new_state = generate_new_grid(grid, counting_func, threshold)
if not is_it_different(grid, new_state): if not is_it_different(grid, new_state):
return new_state return new_state
grid = new_state grid = new_state
@ -60,7 +60,7 @@ def find_stable_state(grid: list[str], limit_iter: int = 10000) -> Union[None, l
def solve_p1(input_data: list[str]) -> int: def solve_p1(input_data: list[str]) -> int:
final_state = find_stable_state(input_data) final_state = find_stable_state(input_data, counting_func=count_adjacent, threshold=4)
if final_state is None: if final_state is None:
return -1 return -1
result = 0 result = 0
@ -69,4 +69,36 @@ def solve_p1(input_data: list[str]) -> int:
return result return result
print(solve_p1(parse_data())) # Count occupied seats *raycast* from the seat at position (x, y)
def count_raycast(x: int, y: int, data: list[str]) -> int:
def check_occupied_ray(start: (int, int), direction: (int, int), _data: list[str]) -> int:
curr_x, curr_y = start
dir_x, dir_y = direction
while 0 <= (curr_x := curr_x + dir_x) < len(data[0]) and 0 <= (curr_y := curr_y + dir_y) < len(data):
if data[curr_y][curr_x] == '#':
return 1
elif data[curr_y][curr_x] == 'L':
return 0
return 0
directions = [(-1, -1), (-1, 0), (-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)]
result = 0
for direction in directions:
result += check_occupied_ray((x, y), direction, data)
return result
def solve_p2(input_data: list[str]) -> int:
final_state = find_stable_state(input_data, counting_func=count_raycast, threshold=5)
if final_state is None:
return -1
result = 0
for line in final_state:
result += line.count('#')
return result
DATA = parse_data()
print(solve_p1(DATA))
print(solve_p2(DATA))