day 13 done

This commit is contained in:
Jake Pullen
2023-12-13 06:28:28 +00:00
parent 4afa5900a0
commit afbfdb25fe
5 changed files with 1542 additions and 6 deletions
+1305 -1
View File
File diff suppressed because it is too large Load Diff
+63 -2
View File
@@ -1,6 +1,67 @@
import os
with open(r'advent_of_code\2023\day_13\test_input.txt', 'r') as file:
test_input = file.read()
with open(r'advent_of_code\2023\day_13\input.txt', 'r') as file:
input = file.read()
print(input)
#input = test_input
def calculate_symmetry(grid) -> int:
"""
Calculate the symmetry of a grid.
This function checks for vertical and horizontal symmetry in the given grid.
For vertical symmetry, it compares each column with its mirror image.
For horizontal symmetry, it compares each row with its mirror image.
The symmetry score is calculated based on the number of symmetric columns and rows.
Parameters:
grid (list of list of str): The grid to check for symmetry. Each inner list represents a row, and each string in the inner list represents a cell.
Returns:
int: The symmetry score of the grid.
"""
num_rows = len(grid)
num_columns = len(grid[0])
symmetry_score = 0
# Check for vertical symmetry
for column_index in range(num_columns - 1):
num_mismatches = 0
for offset in range(num_columns):
left_column = column_index - offset
right_column = column_index + 1 + offset
if 0 <= left_column < right_column < num_columns:
for row_index in range(num_rows):
if grid[row_index][left_column] != grid[row_index][right_column]:
num_mismatches += 1
if num_mismatches == 0:
symmetry_score += column_index + 1
# Check for horizontal symmetry
for row_index in range(num_rows - 1):
num_mismatches = 0
for offset in range(num_rows):
upper_row = row_index - offset
lower_row = row_index + 1 + offset
if 0 <= upper_row < lower_row < num_rows:
for column_index in range(num_columns):
if grid[upper_row][column_index] != grid[lower_row][column_index]:
num_mismatches += 1
if num_mismatches == 0:
symmetry_score += 100 * (row_index + 1)
return symmetry_score
# Split the input into grids
grids = input.split('\n\n')
# Initialize the total symmetry score
total_symmetry = 0
# Calculate the symmetry for each grid
for grid in grids:
grid = [[char for char in row] for row in grid.split('\n')]
total_symmetry += calculate_symmetry(grid)
print(total_symmetry)
+65 -2
View File
@@ -1,6 +1,69 @@
import os
with open(r'advent_of_code\2023\day_13\test_input.txt', 'r') as file:
test_input = file.read()
with open(r'advent_of_code\2023\day_13\input.txt', 'r') as file:
input = file.read()
print(input)
#input = test_input
def calculate_symmetry(grid):
"""
Calculate the symmetry of a grid.
This function checks for vertical and horizontal symmetry in the given grid.
For vertical symmetry, it compares each column with its mirror image.
For horizontal symmetry, it compares each row with its mirror image.
The symmetry score is calculated based on the number of symmetric columns and rows.
Parameters:
grid (list of list of str): The grid to check for symmetry. Each inner list represents a row, and each string in the inner list represents a cell.
part2 (bool): If True, the function will consider a single mismatch as symmetric. If False, the function will only consider perfect symmetry.
Returns:
int: The symmetry score of the grid.
"""
num_rows = len(grid)
num_columns = len(grid[0])
symmetry_score = 0
# Check for vertical symmetry
for column_index in range(num_columns - 1):
num_mismatches = 0
for offset in range(num_columns):
left_column = column_index - offset
right_column = column_index + 1 + offset
if 0 <= left_column < right_column < num_columns:
for row_index in range(num_rows):
if grid[row_index][left_column] != grid[row_index][right_column]:
num_mismatches += 1
if num_mismatches == 1:
symmetry_score += column_index + 1
# Check for horizontal symmetry
for row_index in range(num_rows - 1):
num_mismatches = 0
for offset in range(num_rows):
upper_row = row_index - offset
lower_row = row_index + 1 + offset
if 0 <= upper_row < lower_row < num_rows:
for column_index in range(num_columns):
if grid[upper_row][column_index] != grid[lower_row][column_index]:
num_mismatches += 1
if num_mismatches == 1:
symmetry_score += 100 * (row_index + 1)
return symmetry_score
# Split the input into grids
grids = input.split('\n\n')
# Initialize the total symmetry score
total_symmetry = 0
# Calculate the symmetry for each grid
for grid in grids:
grid = [[char for char in row] for row in grid.split('\n')]
total_symmetry += calculate_symmetry(grid)
print(total_symmetry)
+94 -1
View File
@@ -1 +1,94 @@
# Day 13 Puzzle Text.
<article class="day-desc"><h2>--- Day 13: Point of Incidence ---</h2><p>With your help, the hot springs team locates an appropriate spring which launches you neatly and precisely up to the edge of <em>Lava Island</em>.</p>
<p>There's just one problem: you don't see any <em>lava</em>.</p>
<p>You <em>do</em> see a lot of ash and igneous rock; there are even what look like gray mountains scattered around. After a while, you make your way to a nearby cluster of mountains only to discover that the valley between them is completely full of large <em>mirrors</em>. Most of the mirrors seem to be aligned in a consistent way; perhaps you should head in that direction?</p>
<p>As you move through the valley of mirrors, you find that several of them have fallen from the large metal frames keeping them in place. The mirrors are extremely flat and shiny, and many of the fallen mirrors have lodged into the ash at strange angles. Because the terrain is all one color, it's hard to tell where it's safe to walk or where you're about to run into a mirror.</p>
<p>You note down the patterns of ash (<code>.</code>) and rocks (<code>#</code>) that you see as you walk (your puzzle input); perhaps by carefully analyzing these patterns, you can figure out where the mirrors are!</p>
<p>For example:</p>
<pre><code>#.##..##.
..#.##.#.
##......#
##......#
..#.##.#.
..##..##.
#.#.##.#.
#...##..#
#....#..#
..##..###
#####.##.
#####.##.
..##..###
#....#..#
</code></pre>
<p>To find the reflection in each pattern, you need to find a perfect reflection across either a horizontal line between two rows or across a vertical line between two columns.</p>
<p>In the first pattern, the reflection is across a vertical line between two columns; arrows on each of the two columns point at the line between the columns:</p>
<pre><code>123456789
&gt;&lt;
#.##..##.
..#.##.#.
##......#
##......#
..#.##.#.
..##..##.
#.#.##.#.
&gt;&lt;
123456789
</code></pre>
<p>In this pattern, the line of reflection is the vertical line between columns 5 and 6. Because the vertical line is not perfectly in the middle of the pattern, part of the pattern (column 1) has nowhere to reflect onto and can be ignored; every other column has a reflected column within the pattern and must match exactly: column 2 matches column 9, column 3 matches 8, 4 matches 7, and 5 matches 6.</p>
<p>The second pattern reflects across a horizontal line instead:</p>
<pre><code>1 #...##..# 1
2 #....#..# 2
3 ..##..### 3
4v#####.##.v4
5^#####.##.^5
6 ..##..### 6
7 #....#..# 7
</code></pre>
<p>This pattern reflects across the horizontal line between rows 4 and 5. Row 1 would reflect with a hypothetical row 8, but since that's not in the pattern, row 1 doesn't need to match anything. The remaining rows match: row 2 matches row 7, row 3 matches row 6, and row 4 matches row 5.</p>
<p>To <em>summarize</em> your pattern notes, add up <em>the number of columns</em> to the left of each vertical line of reflection; to that, also add <em>100 multiplied by the number of rows</em> above each horizontal line of reflection. In the above example, the first pattern's vertical line has <code>5</code> columns to its left and the second pattern's horizontal line has <code>4</code> rows above it, a total of <code><em>405</em></code>.</p>
<p>Find the line of reflection in each of the patterns in your notes. <em>What number do you get after summarizing all of your notes?</em></p>
<p>Your puzzle answer was <code>27505</code>.</p><p class="day-success">The first half of this puzzle is complete! It provides one gold star: *</p>
<article class="day-desc"><h2 id="part2">--- Part Two ---</h2><p>You resume walking through the valley of mirrors and - <em>SMACK!</em> - run directly into one. Hopefully <span title="Sorry, Nobody saw that.">nobody</span> was watching, because that must have been pretty embarrassing.</p>
<p>Upon closer inspection, you discover that every mirror has exactly one <em>smudge</em>: exactly one <code>.</code> or <code>#</code> should be the opposite type.</p>
<p>In each pattern, you'll need to locate and fix the smudge that causes a <em>different reflection line</em> to be valid. (The old reflection line won't necessarily continue being valid after the smudge is fixed.)</p>
<p>Here's the above example again:</p>
<pre><code>#.##..##.
..#.##.#.
##......#
##......#
..#.##.#.
..##..##.
#.#.##.#.
#...##..#
#....#..#
..##..###
#####.##.
#####.##.
..##..###
#....#..#
</code></pre>
<p>The first pattern's smudge is in the top-left corner. If the top-left <code>#</code> were instead <code>.</code>, it would have a different, horizontal line of reflection:</p>
<pre><code>1 ..##..##. 1
2 ..#.##.#. 2
3v##......#v3
4^##......#^4
5 ..#.##.#. 5
6 ..##..##. 6
7 #.#.##.#. 7
</code></pre>
<p>With the smudge in the top-left corner repaired, a new horizontal line of reflection between rows 3 and 4 now exists. Row 7 has no corresponding reflected row and can be ignored, but every other row matches exactly: row 1 matches row 6, row 2 matches row 5, and row 3 matches row 4.</p>
<p>In the second pattern, the smudge can be fixed by changing the fifth symbol on row 2 from <code>.</code> to <code>#</code>:</p>
<pre><code>1v#...##..#v1
2^#...##..#^2
3 ..##..### 3
4 #####.##. 4
5 #####.##. 5
6 ..##..### 6
7 #....#..# 7
</code></pre>
<p>Now, the pattern has a different horizontal line of reflection between rows 1 and 2.</p>
<p>Summarize your notes as before, but instead use the new different reflection lines. In this example, the first pattern's new horizontal line has 3 rows above it and the second pattern's new horizontal line has 1 row above it, summarizing to the value <code><em>400</em></code>.</p>
<p>In each pattern, fix the smudge and find the different line of reflection. <em>What number do you get after summarizing the new reflection line in each pattern in your notes?</em></p>
+15
View File
@@ -0,0 +1,15 @@
#.##..##.
..#.##.#.
##......#
##......#
..#.##.#.
..##..##.
#.#.##.#.
#...##..#
#....#..#
..##..###
#####.##.
#####.##.
..##..###
#....#..#