Advent Of Code 2020 | Day 1 to 3
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. These are my six solutions to the ‘Advent of Code 2020’ puzzles, from day 1 to day 3, using R.
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. These are my six solutions to the ‘Advent of Code 2020’ puzzles, from day 1 to day 3, using R.
Advent of Code
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. You don’t need a computer science background to participate - just a little programming knowledge and some problem solving skills will get you pretty far. Nor do you need a fancy computer; every problem has a solution that completes in at most 15 seconds on ten-year-old hardware.
I try to answer the puzzles using R, let’s see what we get…
Day 1: Report Repair
Part One
After saving Christmas five years in a row, you’ve decided to take a vacation at a nice resort on a tropical island. Surely, Christmas will go on without you.
The tropical island has its own currency and is entirely cash-only. The gold coins used there have a little picture of a starfish; the locals just call them stars. None of the currency exchanges seem to have heard of them, but somehow, you’ll need to find fifty of these coins by the time you arrive so you can pay the deposit on your room.
To save your vacation, you need to get all fifty stars by December 25th.
Collect stars by solving puzzles. Two puzzles will be made available on each day in the Advent calendar; the second puzzle is unlocked when you complete the first. Each puzzle grants one star. Good luck!
Before you leave, the Elves in accounting just need you to fix your expense report (your puzzle input); apparently, something isn’t quite adding up.
Specifically, they need you to find the two entries that sum to 2020
and then multiply those two numbers together.
For example, suppose your expense report contained the following:
|
|
In this list, the two entries that sum to 2020
are 1721
and 299.
Multiplying them together produces 1721 * 299 = 514579
, so the correct answer is 514579.
Of course, your expense report is much larger. Find the two entries that sum to 2020; what do you get if you multiply them together?
Solution
I’ll make a matrix with combination of 2 of all elements in the input, sum then up and check which pair has 2020
as result.
|
|
|
|
Part two
The Elves in accounting are thankful for your help; one of them even offers you a starfish coin they had left over from a past vacation. They offer you a second one if you can find three numbers in your expense report that meet the same criteria.
Using the above example again, the three entries that sum to 2020
are 979, 366,
and 675
. Multiplying them together produces the answer, 241861950
.
In your expense report, what is the product of the three entries that sum to 2020?
Solution
The same strategy, but in this case we make combinations of 3.
|
|
|
|
|
|
|
|
Day 2: Password Philosophy
Parte One
Your flight departs in a few days from the coastal airport; the easiest way down to the coast from here is via toboggan.
The shopkeeper at the North Pole Toboggan Rental Shop is having a bad day. “Something’s wrong with our computers; we can’t log in!” You ask if you can take a look.
Their password database seems to be a little corrupted: some of the passwords wouldn’t have been allowed by the Official Toboggan Corporate Policy that was in effect when they were chosen.
To try to debug the problem, they have created a list (your puzzle input) of passwords (according to the corrupted database) and the corporate policy when that password was set.
For example, suppose you have the following list:
|
|
Each line gives the password policy and then the password. The password policy indicates the lowest and highest number of times a given letter must appear for the password to be valid. For example, 1-3 a
means that the password must contain a
at least 1
time and at most 3
times.
In the above example, 2 passwords are valid. The middle password, cdefg
, is not; it contains no instances of b
, but needs at least 1
. The first and third passwords are valid: they contain one a or nine c
, both within the limits of their respective policies.
How many passwords are valid according to their policies?
Solution
I’ll process the input separating the policy and the password, after that we split the policy in the letter to be checked and the min and max appearing range.
|
|
input | pol.range.min | pol.range.max | pol.letter | password | count.letter | is.valid |
---|---|---|---|---|---|---|
16-18 h: hhhhhhhhhhhhhhhhhh | 16 | 18 | h | hhhhhhhhhhhhhhhhhh | 18 | TRUE |
17-18 d: ddddddddddddddddzn | 17 | 18 | d | ddddddddddddddddzn | 16 | FALSE |
15-18 c: cccccccccccccczcczc | 15 | 18 | c | cccccccccccccczcczc | 17 | TRUE |
3-9 r: pplzctdrc | 3 | 9 | r | pplzctdrc | 1 | FALSE |
4-14 d: lxdmddfddddddd | 4 | 14 | d | lxdmddfddddddd | 10 | TRUE |
8-14 v: pvxlknfvplgktv | 8 | 14 | v | pvxlknfvplgktv | 3 | FALSE |
|
|
|
|
Part Two
While it appears you validated the passwords correctly, they don’t seem to be what the Official Toboggan Corporate Authentication System is expecting.
The shopkeeper suddenly realizes that he just accidentally explained the password policy rules from his old job at the sled rental place down the street! The Official Toboggan Corporate Policy actually works a little differently.
Each policy actually describes two positions in the password, where 1 means the first character, 2 means the second character, and so on. (Be careful; Toboggan Corporate Policies have no concept of “index zero”!) Exactly one of these positions must contain the given letter. Other occurrences of the letter are irrelevant for the purposes of policy enforcement.
Given the same example list from above:
|
|
How many passwords are valid according to the new interpretation of the policies?
Solution
I’ll use the same solution here, but change the interpretation of the policy following the new philosophy.
|
|
|
|
|
|
|
|
Day 3: Toboggan Trajectory
Part 1
With the toboggan login problems resolved, you set off toward the airport. While travel by toboggan might be easy, it’s certainly not safe: there’s very minimal steering and the area is covered in trees. You’ll need to see which angles will take you near the fewest trees.
Due to the local geology, trees in this area only grow on exact integer coordinates in a grid. You make a map (your puzzle input) of the open squares (.
) and trees (#
) you can see. For example:
|
|
These aren’t the only trees, though; due to something you read about once involving arboreal genetics and biome stability, the same pattern repeats to the right many times:
|
|
You start on the open square (.
) in the top-left corner and need to reach the bottom (below the bottom-most row on your map).
The toboggan can only follow a few specific slopes (you opted for a cheaper model that prefers rational numbers); start by counting all the trees you would encounter for the slope right 3, down 1:
From your starting position at the top-left, check the position that is right 3 and down 1. Then, check the position that is right 3 and down 1 from there, and so on until you go past the bottom of the map.
The locations you’d check in the above example are marked here with O
where there was an open square and X
where there was a tree:
|
|
In this example, traversing the map using this slope would cause you to encounter 7 trees.
Starting at the top-left corner of your map and following a slope of right 3 and down 1, how many trees would you encounter?
Solution
The idea is to change the tree char map
of dots and hashtags into a 0/1
matrix marking the trees with 1
. After that I iterate the trajectory to find the slope down positions (coordinates) until the end of the hill (bottom of the matrix). As the trees are repeating them pattern, it’s necessary to keep the y-coordinate
in the range of the size of the matrix.
|
|
|
|
Part 2
Time to check the rest of the slopes - you need to minimize the probability of a sudden arboreal stop, after all.
Determine the number of trees you would encounter if, for each of the following slopes, you start at the top-left corner and traverse the map all the way to the bottom:
|
|
In the above example, these slopes would find 2, 7, 3, 4, and 2 tree(s) respectively; multiplied together, these produce the answer 336.
What do you get if you multiply together the number of trees encountered on each of the listed slopes?
Solution
The same idea here, but I’ll make a generic solution (a function) to test several “slope strategy”.
|
|
|
|
|
|
|
|
To be continued…
I’ll make the rest of puzzles in the next days and publish them here, see you…