Day 7
[advent-of-code-2021.git] / day07 / task.txt
1 --- Day 7: The Treachery of Whales ---
2 A giant whale has decided your submarine is its next meal, and it's much faster than you are. There's nowhere to run!
3
4 Suddenly, a swarm of crabs (each in its own tiny submarine - it's too deep for them otherwise) zooms in to rescue you! They seem to be preparing to blast a hole in the ocean floor; sensors indicate a massive underground cave system just beyond where they're aiming!
5
6 The crab submarines all need to be aligned before they'll have enough power to blast a large enough hole for your submarine to get through. However, it doesn't look like they'll be aligned before the whale catches you! Maybe you can help?
7
8 There's one major catch - crab submarines can only move horizontally.
9
10 You quickly make a list of the horizontal position of each crab (your puzzle input). Crab submarines have limited fuel, so you need to find a way to make all of their horizontal positions match while requiring them to spend as little fuel as possible.
11
12 For example, consider the following horizontal positions:
13
14 16,1,2,0,4,2,7,1,2,14
15 This means there's a crab with horizontal position 16, a crab with horizontal position 1, and so on.
16
17 Each change of 1 step in horizontal position of a single crab costs 1 fuel. You could choose any horizontal position to align them all on, but the one that costs the least fuel is horizontal position 2:
18
19 Move from 16 to 2: 14 fuel
20 Move from 1 to 2: 1 fuel
21 Move from 2 to 2: 0 fuel
22 Move from 0 to 2: 2 fuel
23 Move from 4 to 2: 2 fuel
24 Move from 2 to 2: 0 fuel
25 Move from 7 to 2: 5 fuel
26 Move from 1 to 2: 1 fuel
27 Move from 2 to 2: 0 fuel
28 Move from 14 to 2: 12 fuel
29 This costs a total of 37 fuel. This is the cheapest possible outcome; more expensive outcomes include aligning at position 1 (41 fuel), position 3 (39 fuel), or position 10 (71 fuel).
30
31 Determine the horizontal position that the crabs can align to using the least fuel possible. How much fuel must they spend to align to that position?
32
33 Your puzzle answer was 347509.
34
35 --- Part Two ---
36 The crabs don't seem interested in your proposed solution. Perhaps you misunderstand crab engineering?
37
38 As it turns out, crab submarine engines don't burn fuel at a constant rate. Instead, each change of 1 step in horizontal position costs 1 more unit of fuel than the last: the first step costs 1, the second step costs 2, the third step costs 3, and so on.
39
40 As each crab moves, moving further becomes more expensive. This changes the best horizontal position to align them all on; in the example above, this becomes 5:
41
42 Move from 16 to 5: 66 fuel
43 Move from 1 to 5: 10 fuel
44 Move from 2 to 5: 6 fuel
45 Move from 0 to 5: 15 fuel
46 Move from 4 to 5: 1 fuel
47 Move from 2 to 5: 6 fuel
48 Move from 7 to 5: 3 fuel
49 Move from 1 to 5: 10 fuel
50 Move from 2 to 5: 6 fuel
51 Move from 14 to 5: 45 fuel
52 This costs a total of 168 fuel. This is the new cheapest possible outcome; the old alignment position (2) now costs 206 fuel instead.
53
54 Determine the horizontal position that the crabs can align to using the least fuel possible so they can make you an escape route! How much fuel must they spend to align to that position?
55
56 Your puzzle answer was 98257206.
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.