Skip to content

Commit 9f6249f

Browse files
committed
2022 day 1
1 parent 6c7c8da commit 9f6249f

File tree

9 files changed

+2417
-1
lines changed

9 files changed

+2417
-1
lines changed

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.0
1+
3.11.0

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
## usage
88

9+
open Run On Save in Output tab
10+
911
```zsh
1012
# run day 2 from 2020
1113
./main.py run 2020 02

advent/tools.py

+25
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,28 @@
2222

2323
import advent.fs as afs
2424
import advent.util as util
25+
26+
__all__ = [
27+
"cl",
28+
"cp",
29+
"dc",
30+
"enum",
31+
"ft",
32+
"hq",
33+
"it",
34+
"json",
35+
"math",
36+
"op",
37+
"rnd",
38+
"re",
39+
"stats",
40+
"t",
41+
"uuid",
42+
"np",
43+
"pptree",
44+
"ppbtree",
45+
"sc",
46+
"geo",
47+
"afs",
48+
"util",
49+
]

advent/year_2022/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
__all__ = [
2+
"day_01",
3+
"day_02",
4+
]

advent/year_2022/day_01.py

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
"""
2+
--- Day 1: Calorie Counting ---
3+
Santa's reindeer typically eat regular reindeer food, but they need a lot of magical energy to deliver presents on Christmas. For that, their favorite snack is a special type of star fruit that only grows deep in the jungle. The Elves have brought you on their annual expedition to the grove where the fruit grows.
4+
5+
To supply enough magical energy, the expedition needs to retrieve a minimum of fifty stars by December 25th. Although the Elves assure you that the grove has plenty of fruit, you decide to grab any fruit you see along the way, just in case.
6+
7+
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!
8+
9+
The jungle must be too overgrown and difficult to navigate in vehicles or access from the air; the Elves' expedition traditionally goes on foot. As your boats approach land, the Elves begin taking inventory of their supplies. One important consideration is food - in particular, the number of Calories each Elf is carrying (your puzzle input).
10+
11+
The Elves take turns writing down the number of Calories contained by the various meals, snacks, rations, etc. that they've brought with them, one item per line. Each Elf separates their own inventory from the previous Elf's inventory (if any) by a blank line.
12+
13+
For example, suppose the Elves finish writing their items' Calories and end up with the following list:
14+
15+
1000
16+
2000
17+
3000
18+
19+
4000
20+
21+
5000
22+
6000
23+
24+
7000
25+
8000
26+
9000
27+
28+
10000
29+
This list represents the Calories of the food carried by five Elves:
30+
31+
The first Elf is carrying food with 1000, 2000, and 3000 Calories, a total of 6000 Calories.
32+
The second Elf is carrying one food item with 4000 Calories.
33+
The third Elf is carrying food with 5000 and 6000 Calories, a total of 11000 Calories.
34+
The fourth Elf is carrying food with 7000, 8000, and 9000 Calories, a total of 24000 Calories.
35+
The fifth Elf is carrying one food item with 10000 Calories.
36+
In case the Elves get hungry and need extra snacks, they need to know which Elf to ask: they'd like to know how many Calories are being carried by the Elf carrying the most Calories. In the example above, this is 24000 (carried by the fourth Elf).
37+
38+
Find the Elf carrying the most Calories. How many total Calories is that Elf carrying?
39+
40+
Your puzzle answer was 72511.
41+
42+
--- Part Two ---
43+
By the time you calculate the answer to the Elves' question,
44+
they've already realized that the Elf carrying the most Calories of food might eventually run out of snacks.
45+
46+
To avoid this unacceptable situation, the Elves would instead like to know the total Calories carried by the
47+
top three Elves carrying the most Calories. That way, even if one of those Elves runs out of snacks,
48+
they still have two backups.
49+
50+
In the example above, the top three Elves are the fourth Elf (with 24000 Calories), then the third Elf
51+
(with 11000 Calories), then the fifth Elf (with 10000 Calories). The sum of the Calories carried by these
52+
three elves is 45000.
53+
54+
Find the top three Elves carrying the most Calories. How many Calories are those Elves carrying in total?
55+
56+
Your puzzle answer was 212117.
57+
58+
Both parts of this puzzle are complete! They provide two gold stars: **
59+
60+
At this point, you should return to your Advent calendar and try another puzzle.
61+
62+
If you still want to see it, you can get your puzzle input.
63+
64+
You can also [Share] this puzzle.
65+
"""
66+
67+
from advent.tools import *
68+
69+
70+
def _pt1(elves):
71+
return max(elves)
72+
73+
74+
def _pt2(elves):
75+
return sum(sorted(elves, reverse=True)[:3])
76+
77+
78+
TEST = """1000
79+
2000
80+
3000
81+
82+
4000
83+
84+
5000
85+
6000
86+
87+
7000
88+
8000
89+
9000
90+
91+
10000
92+
"""
93+
ANSWERS = [24000, 72511, 45000, 212117]
94+
95+
96+
def main():
97+
return afs.input_groups(
98+
tests=[TEST],
99+
parts=[_pt1, _pt2],
100+
run_input=True,
101+
transform_group=lambda g: sum(map(int, g.splitlines())),
102+
)

0 commit comments

Comments
 (0)