Day 1
[advent-of-code-2021.git] / day01 / task.txt
1 --- Day 1: Sonar Sweep ---
2 You're minding your own business on a ship at sea when the overboard alarm goes off! You rush to see if you can help. Apparently, one of the Elves tripped and accidentally sent the sleigh keys flying into the ocean!
3
4 Before you know it, you're inside a submarine the Elves keep ready for situations like this. It's covered in Christmas lights (because of course it is), and it even has an experimental antenna that should be able to track the keys if you can boost its signal strength high enough; there's a little meter that indicates the antenna's signal strength by displaying 0-50 stars.
5
6 Your instincts tell you that in order to save Christmas, you'll need to get all fifty stars by December 25th.
7
8 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!
9
10 As the submarine drops below the surface of the ocean, it automatically performs a sonar sweep of the nearby sea floor. On a small screen, the sonar sweep report (your puzzle input) appears: each line is a measurement of the sea floor depth as the sweep looks further and further away from the submarine.
11
12 For example, suppose you had the following report:
13
14 199
15 200
16 208
17 210
18 200
19 207
20 240
21 269
22 260
23 263
24 This report indicates that, scanning outward from the submarine, the sonar sweep found depths of 199, 200, 208, 210, and so on.
25
26 The first order of business is to figure out how quickly the depth increases, just so you know what you're dealing with - you never know if the keys will get carried into deeper water by an ocean current or a fish or something.
27
28 To do this, count the number of times a depth measurement increases from the previous measurement. (There is no measurement before the first measurement.) In the example above, the changes are as follows:
29
30 199 (N/A - no previous measurement)
31 200 (increased)
32 208 (increased)
33 210 (increased)
34 200 (decreased)
35 207 (increased)
36 240 (increased)
37 269 (increased)
38 260 (decreased)
39 263 (increased)
40 In this example, there are 7 measurements that are larger than the previous measurement.
41
42 How many measurements are larger than the previous measurement?
43
44 Your puzzle answer was 1624.
45
46 --- Part Two ---
47 Considering every single measurement isn't as useful as you expected: there's just too much noise in the data.
48
49 Instead, consider sums of a three-measurement sliding window. Again considering the above example:
50
51 199  A      
52 200  A B    
53 208  A B C  
54 210    B C D
55 200  E   C D
56 207  E F   D
57 240  E F G  
58 269    F G H
59 260      G H
60 263        H
61 Start by comparing the first and second three-measurement windows. The measurements in the first window are marked A (199, 200, 208); their sum is 199 + 200 + 208 = 607. The second window is marked B (200, 208, 210); its sum is 618. The sum of measurements in the second window is larger than the sum of the first, so this first comparison increased.
62
63 Your goal now is to count the number of times the sum of measurements in this sliding window increases from the previous sum. So, compare A with B, then compare B with C, then C with D, and so on. Stop when there aren't enough measurements left to create a new three-measurement sum.
64
65 In the above example, the sum of each three-measurement window is as follows:
66
67 A: 607 (N/A - no previous sum)
68 B: 618 (increased)
69 C: 618 (no change)
70 D: 617 (decreased)
71 E: 647 (increased)
72 F: 716 (increased)
73 G: 769 (increased)
74 H: 792 (increased)
75 In this example, there are 5 sums that are larger than the previous sum.
76
77 Consider sums of a three-measurement sliding window. How many sums are larger than the previous sum?
78
79 Your puzzle answer was 1653.
80
81 Both parts of this puzzle are complete! They provide two gold stars: **
82
83 At this point, you should return to your Advent calendar and try another puzzle.
84
85 If you still want to see it, you can get your puzzle input.
86
87 You can also [Share] this puzzle.