-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday14.py
84 lines (69 loc) · 2.03 KB
/
day14.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
def generate_line(start, end, grid):
grid[start] = "#"
grid[end] = "#"
start_x, start_y = start
end_x, end_y = end
if start_x != end_x:
dif_x = end_x - start_x
for x in range(start_x, end_x, dif_x // abs(dif_x)):
grid[(x, start_y)] = "#"
if start_y != end_y:
dif_y = end_y - start_y
for y in range(start_y, end_y, dif_y // abs(dif_y)):
grid[(start_x, y)] = "#"
def parse_pairs(pairs, grid):
parsed = []
for pair in pairs:
parts = pair.split(",")
parsed.append((int(parts[0]), int(parts[1])))
for i in range(len(parsed) - 1):
generate_line(parsed[i], parsed[i + 1], grid)
def parse_input(lines):
result = {}
for line in lines:
pairs = line.split(" -> ")
parse_pairs(pairs, result)
return result
def get_lowest(grid):
lowest = 0
for _, y in grid:
if y > lowest:
lowest = y
return lowest
def get_rest_position(start, grid, lowest, limit):
x, y = start
while (True):
if y >= lowest and not limit:
return None
if y == lowest + 1 and limit:
return x, y
if grid.get((x, y + 1)) is None:
y = y + 1
continue
elif grid.get((x - 1, y + 1)) is None:
x = x - 1
y = y + 1
continue
elif grid.get((x + 1, y + 1)) is None:
x = x + 1
y = y + 1
continue
else:
return x, y
def fill_grid_with_sand(grid, limit):
lowest = get_lowest(grid)
count = 0
while True:
pos = get_rest_position((500, 0), grid, lowest, limit)
if not pos:
return count
grid[pos] = "o"
count += 1
if pos == (500, 0):
return count
input_file = open('input/day14.txt', 'r')
input_lines = [line for line in input_file.read().splitlines()]
grid = parse_input(input_lines)
print(fill_grid_with_sand(grid, False))
grid = parse_input(input_lines)
print(fill_grid_with_sand(grid, True))