Skip to content

Commit 61a40c8

Browse files
committed
Solved 2020 day 3
1 parent 61c00a2 commit 61a40c8

File tree

4 files changed

+469
-0
lines changed

4 files changed

+469
-0
lines changed
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
### --- Day 3: Toboggan Trajectory ---
2+
3+
With the toboggan login problems resolved, you set off toward the airport. While travel by toboggan might be easy, it's
4+
certainly not safe: there's very minimal steering and the area is covered in trees. You'll need to see which angles will
5+
take you near the fewest trees.
6+
7+
Due to the local geology, trees in this area only grow on exact integer coordinates in a grid. You make a map (your
8+
puzzle input) of the open squares (```.```) and trees (```#```) you can see. For example:
9+
10+
..##.......
11+
#...#...#..
12+
.#....#..#.
13+
..#.#...#.#
14+
.#...##..#.
15+
..#.##.....
16+
.#.#.#....#
17+
.#........#
18+
#.##...#...
19+
#...##....#
20+
.#..#...#.#
21+
22+
These aren't the only trees, though; due to something you read about once involving arboreal genetics and biome
23+
stability, the same pattern repeats to the right many times:
24+
25+
..##.........##.........##.........##.........##.........##....... --->
26+
#...#...#..#...#...#..#...#...#..#...#...#..#...#...#..#...#...#..
27+
.#....#..#..#....#..#..#....#..#..#....#..#..#....#..#..#....#..#.
28+
..#.#...#.#..#.#...#.#..#.#...#.#..#.#...#.#..#.#...#.#..#.#...#.#
29+
.#...##..#..#...##..#..#...##..#..#...##..#..#...##..#..#...##..#.
30+
..#.##.......#.##.......#.##.......#.##.......#.##.......#.##..... --->
31+
.#.#.#....#.#.#.#....#.#.#.#....#.#.#.#....#.#.#.#....#.#.#.#....#
32+
.#........#.#........#.#........#.#........#.#........#.#........#
33+
#.##...#...#.##...#...#.##...#...#.##...#...#.##...#...#.##...#...
34+
#...##....##...##....##...##....##...##....##...##....##...##....#
35+
.#..#...#.#.#..#...#.#.#..#...#.#.#..#...#.#.#..#...#.#.#..#...#.# --->
36+
37+
You start on the open square (```.```) in the top-left corner and need to reach the bottom (below the bottom-most row on
38+
your map).
39+
40+
The toboggan can only follow a few specific slopes (you opted for a cheaper model that prefers rational numbers); start
41+
by counting all the trees you would encounter for the slope right 3, down 1:
42+
43+
From your starting position at the top-left, check the position that is right 3 and down 1. Then, check the position
44+
that is right 3 and down 1 from there, and so on until you go past the bottom of the map.
45+
46+
The locations you'd check in the above example are marked here with O where there was an open square and X where there
47+
was a tree:
48+
49+
..##.........##.........##.........##.........##.........##....... --->
50+
#..O#...#..#...#...#..#...#...#..#...#...#..#...#...#..#...#...#..
51+
.#....X..#..#....#..#..#....#..#..#....#..#..#....#..#..#....#..#.
52+
..#.#...#O#..#.#...#.#..#.#...#.#..#.#...#.#..#.#...#.#..#.#...#.#
53+
.#...##..#..X...##..#..#...##..#..#...##..#..#...##..#..#...##..#.
54+
..#.##.......#.X#.......#.##.......#.##.......#.##.......#.##..... --->
55+
.#.#.#....#.#.#.#.O..#.#.#.#....#.#.#.#....#.#.#.#....#.#.#.#....#
56+
.#........#.#........X.#........#.#........#.#........#.#........#
57+
#.##...#...#.##...#...#.X#...#...#.##...#...#.##...#...#.##...#...
58+
#...##....##...##....##...#X....##...##....##...##....##...##....#
59+
.#..#...#.#.#..#...#.#.#..#...X.#.#..#...#.#.#..#...#.#.#..#...#.# --->
60+
61+
In this example, traversing the map using this slope would cause you to encounter ```7``` trees.
62+
63+
Starting at the top-left corner of your map and following a slope of ```right 3``` and ```down 1```, how many trees
64+
would you encounter?
65+
66+
### --- Part Two ---
67+
68+
Time to check the rest of the slopes - you need to minimize the probability of a sudden arboreal stop, after all.
69+
70+
Determine the number of trees you would encounter if, for each of the following slopes, you start at the top-left corner
71+
and traverse the map all the way to the bottom:
72+
73+
Right 1, down 1.
74+
Right 3, down 1. (This is the slope you already checked.)
75+
Right 5, down 1.
76+
Right 7, down 1.
77+
Right 1, down 2.
78+
79+
In the above example, these slopes would find ```2```, ```7```, ```3```, ```4```, and ```2``` tree(s) respectively;
80+
multiplied together, these produce the answer ```336```.
81+
82+
What do you get if you multiply together the number of trees encountered on each of the listed slopes?
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?php
2+
3+
namespace App\AdventSolutions\Year2020\Day3;
4+
5+
use App\AdventSolutions\AbstractSolution;
6+
7+
class Solution2020Day3 extends AbstractSolution
8+
{
9+
public function solvePart1($input): string
10+
{
11+
$width = strlen($input[0]);
12+
$height = count($input);
13+
$x = 0;
14+
$y = 0;
15+
$trees = 0;
16+
while ($y < $height) {
17+
if ($input[$y][$x] === "#") {
18+
$trees++;
19+
}
20+
$x = ($x + 3) % $width;
21+
$y++;
22+
}
23+
return "You would encounter <info>$trees</info> trees on the way down.";
24+
}
25+
26+
public function solvePart2($input): string
27+
{
28+
$width = strlen($input[0]);
29+
$height = count($input);
30+
$slopes = [
31+
[1, 1],
32+
[3, 1],
33+
[5, 1],
34+
[7, 1],
35+
[1, 2],
36+
];
37+
$result = 1;
38+
foreach ($slopes as $slope) {
39+
$x = 0;
40+
$y = 0;
41+
$trees = 0;
42+
while ($y < $height) {
43+
if ($input[$y][$x] === "#") {
44+
$trees++;
45+
}
46+
$x = ($x + $slope[0]) % $width;
47+
$y += $slope[1];
48+
}
49+
$result *= $trees;
50+
}
51+
return "The product of the number of trees encountered on each slope is <info>$result</info>.";
52+
}
53+
}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy