|
| 1 | +# Answers |
| 2 | + |
| 3 | +| Part 1 | Part 2 | |
| 4 | +|------------|------------| |
| 5 | +| `27831665` | `36265589` | |
| 6 | + |
| 7 | +## --- Day 16: Flawed Frequency Transmission --- |
| 8 | + |
| 9 | +You're 3/4ths of the way through the [gas giants](https://en.wikipedia.org/wiki/Gas_giant). Not only do roundtrip signals to Earth take five hours, but the signal quality is quite bad as well. You can clean up the signal with the Flawed Frequency Transmission algorithm, or _FFT_. |
| 10 | + |
| 11 | +As input, FFT takes a list of numbers. In the signal you received (your puzzle input), each number is a single digit: data like `15243` represents the sequence `1`, `5`, `2`, `4`, `3`. |
| 12 | + |
| 13 | +FFT operates in repeated _phases_. In each phase, a new list is constructed with the same length as the input list. This new list is also used as the input for the next phase. |
| 14 | + |
| 15 | +Each element in the new list is built by multiplying every value in the input list by a value in a repeating _pattern_ and then adding up the results. So, if the input list were `9, 8, 7, 6, 5` and the pattern for a given element were `1, 2, 3`, the result would be `9*1 + 8*2 + 7*3 + 6*1 + 5*2` (with each input element on the left and each value in the repeating pattern on the right of each multiplication). Then, only the ones digit is kept: `38` becomes `8`, `-17` becomes `7`, and so on. |
| 16 | + |
| 17 | +While each element in the output array uses all of the same input array elements, the actual repeating pattern to use depends on _which output element_ is being calculated. The base pattern is `0, 1, 0, -1`. Then, repeat each value in the pattern a number of times equal to the _position in the output list_ being considered. Repeat once for the first element, twice for the second element, three times for the third element, and so on. So, if the third element of the output list is being calculated, repeating the values would produce: `0, 0, 0, 1, 1, 1, 0, 0, 0, -1, -1, -1`. |
| 18 | + |
| 19 | +When applying the pattern, skip the very first value exactly once. (In other words, offset the whole pattern left by one.) So, for the second element of the output list, the actual pattern used would be: `0, 1, 1, 0, 0, -1, -1, 0, 0, 1, 1, 0, 0, -1, -1, ...`. |
| 20 | + |
| 21 | +After using this process to calculate each element of the output list, the phase is complete, and the output list of this phase is used as the new input list for the next phase, if any. |
| 22 | + |
| 23 | +Given the input signal `12345678`, below are four phases of FFT. Within each phase, each output digit is calculated on a single line with the result at the far right; each multiplication operation shows the input digit on the left and the pattern value on the right: |
| 24 | + |
| 25 | + Input signal: 12345678 |
| 26 | + |
| 27 | + 1*1 + 2*0 + 3*-1 + 4*0 + 5*1 + 6*0 + 7*-1 + 8*0 = 4 |
| 28 | + 1*0 + 2*1 + 3*1 + 4*0 + 5*0 + 6*-1 + 7*-1 + 8*0 = 8 |
| 29 | + 1*0 + 2*0 + 3*1 + 4*1 + 5*1 + 6*0 + 7*0 + 8*0 = 2 |
| 30 | + 1*0 + 2*0 + 3*0 + 4*1 + 5*1 + 6*1 + 7*1 + 8*0 = 2 |
| 31 | + 1*0 + 2*0 + 3*0 + 4*0 + 5*1 + 6*1 + 7*1 + 8*1 = 6 |
| 32 | + 1*0 + 2*0 + 3*0 + 4*0 + 5*0 + 6*1 + 7*1 + 8*1 = 1 |
| 33 | + 1*0 + 2*0 + 3*0 + 4*0 + 5*0 + 6*0 + 7*1 + 8*1 = 5 |
| 34 | + 1*0 + 2*0 + 3*0 + 4*0 + 5*0 + 6*0 + 7*0 + 8*1 = 8 |
| 35 | + |
| 36 | + After 1 phase: 48226158 |
| 37 | + |
| 38 | + 4*1 + 8*0 + 2*-1 + 2*0 + 6*1 + 1*0 + 5*-1 + 8*0 = 3 |
| 39 | + 4*0 + 8*1 + 2*1 + 2*0 + 6*0 + 1*-1 + 5*-1 + 8*0 = 4 |
| 40 | + 4*0 + 8*0 + 2*1 + 2*1 + 6*1 + 1*0 + 5*0 + 8*0 = 0 |
| 41 | + 4*0 + 8*0 + 2*0 + 2*1 + 6*1 + 1*1 + 5*1 + 8*0 = 4 |
| 42 | + 4*0 + 8*0 + 2*0 + 2*0 + 6*1 + 1*1 + 5*1 + 8*1 = 0 |
| 43 | + 4*0 + 8*0 + 2*0 + 2*0 + 6*0 + 1*1 + 5*1 + 8*1 = 4 |
| 44 | + 4*0 + 8*0 + 2*0 + 2*0 + 6*0 + 1*0 + 5*1 + 8*1 = 3 |
| 45 | + 4*0 + 8*0 + 2*0 + 2*0 + 6*0 + 1*0 + 5*0 + 8*1 = 8 |
| 46 | + |
| 47 | + After 2 phases: 34040438 |
| 48 | + |
| 49 | + 3*1 + 4*0 + 0*-1 + 4*0 + 0*1 + 4*0 + 3*-1 + 8*0 = 0 |
| 50 | + 3*0 + 4*1 + 0*1 + 4*0 + 0*0 + 4*-1 + 3*-1 + 8*0 = 3 |
| 51 | + 3*0 + 4*0 + 0*1 + 4*1 + 0*1 + 4*0 + 3*0 + 8*0 = 4 |
| 52 | + 3*0 + 4*0 + 0*0 + 4*1 + 0*1 + 4*1 + 3*1 + 8*0 = 1 |
| 53 | + 3*0 + 4*0 + 0*0 + 4*0 + 0*1 + 4*1 + 3*1 + 8*1 = 5 |
| 54 | + 3*0 + 4*0 + 0*0 + 4*0 + 0*0 + 4*1 + 3*1 + 8*1 = 5 |
| 55 | + 3*0 + 4*0 + 0*0 + 4*0 + 0*0 + 4*0 + 3*1 + 8*1 = 1 |
| 56 | + 3*0 + 4*0 + 0*0 + 4*0 + 0*0 + 4*0 + 3*0 + 8*1 = 8 |
| 57 | + |
| 58 | + After 3 phases: 03415518 |
| 59 | + |
| 60 | + 0*1 + 3*0 + 4*-1 + 1*0 + 5*1 + 5*0 + 1*-1 + 8*0 = 0 |
| 61 | + 0*0 + 3*1 + 4*1 + 1*0 + 5*0 + 5*-1 + 1*-1 + 8*0 = 1 |
| 62 | + 0*0 + 3*0 + 4*1 + 1*1 + 5*1 + 5*0 + 1*0 + 8*0 = 0 |
| 63 | + 0*0 + 3*0 + 4*0 + 1*1 + 5*1 + 5*1 + 1*1 + 8*0 = 2 |
| 64 | + 0*0 + 3*0 + 4*0 + 1*0 + 5*1 + 5*1 + 1*1 + 8*1 = 9 |
| 65 | + 0*0 + 3*0 + 4*0 + 1*0 + 5*0 + 5*1 + 1*1 + 8*1 = 4 |
| 66 | + 0*0 + 3*0 + 4*0 + 1*0 + 5*0 + 5*0 + 1*1 + 8*1 = 9 |
| 67 | + 0*0 + 3*0 + 4*0 + 1*0 + 5*0 + 5*0 + 1*0 + 8*1 = 8 |
| 68 | + |
| 69 | + After 4 phases: 01029498 |
| 70 | + |
| 71 | + |
| 72 | +Here are the first eight digits of the final output list after 100 phases for some larger inputs: |
| 73 | + |
| 74 | +* `80871224585914546619083218645595` becomes `24176176`. |
| 75 | +* `19617804207202209144916044189917` becomes `73745418`. |
| 76 | +* `69317163492948606335995924319873` becomes `52432133`. |
| 77 | + |
| 78 | +After _100_ phases of FFT, _what are the first eight digits in the final output list?_ |
| 79 | + |
| 80 | +----------------- |
| 81 | + |
| 82 | +## --- Part Two --- |
| 83 | + |
| 84 | +Now that your FFT is working, you can decode the _real signal_. |
| 85 | + |
| 86 | +The real signal is your puzzle input _repeated 10000 times_. Treat this new signal as a single input list. Patterns are still calculated as before, and 100 phases of FFT are still applied. |
| 87 | + |
| 88 | +The _first seven digits_ of your initial input signal also represent the _message offset_. The message offset is the location of the eight-digit message in the final output list. Specifically, the message offset indicates _the number of digits to skip_ before reading the eight-digit message. For example, if the first seven digits of your initial input signal were `1234567`, the eight-digit message would be the eight digits after skipping 1,234,567 digits of the final output list. Or, if the message offset were `7` and your final output list were `98765432109876543210`, the eight-digit message would be `21098765`. (Of course, your real message offset will be a seven-digit number, not a one-digit number like `7`.) |
| 89 | + |
| 90 | +Here is the eight-digit message in the final output list after 100 phases. The message offset given in each input has been highlighted. (Note that the inputs given below are repeated 10000 times to find the actual starting input lists.) |
| 91 | + |
| 92 | +* <code><b>0303673</b>2577212944063491565474664</code> becomes `84462026`. |
| 93 | +* <code><b>0293510</b>9699940807407585447034323</code> becomes `78725270`. |
| 94 | +* <code><b>0308177</b>0884921959731165446850517</code> becomes `53553731`. |
| 95 | + |
| 96 | +After repeating your input signal 10000 times and running 100 phases of FFT, _what is the eight-digit message embedded in the final output list?_ |
0 commit comments