part1 (5979B)
1--- Day 8: Seven Segment Search --- 2 3You barely reach the safety of the cave when the whale smashes into the cave mouth, collapsing it. 4Sensors indicate another exit to this cave at a much greater depth, so you have no choice but to 5press on. 6 7As your submarine slowly makes its way through the cave system, you notice that the four-digit 8seven-segment displays in your submarine are malfunctioning; they must have been damaged during the 9escape. You'll be in a lot of trouble without them, so you'd better figure out what's wrong. 10 11Each digit of a seven-segment display is rendered by turning on or off any of seven segments named a 12through g: 13 14 0: 1: 2: 3: 4: 15 [1m[37maaaa[0m .... [1m[37maaaa aaaa[0m .... 16[1m[37mb c[0m . [1m[37mc[0m . [1m[37mc[0m . [1m[37mc b c[0m 17[1m[37mb c[0m . [1m[37mc[0m . [1m[37mc[0m . [1m[37mc b c[0m 18 .... .... [1m[37mdddd dddd dddd[0m 19[1m[37me f[0m . [1m[37mf e[0m . . [1m[37mf[0m . [1m[37mf[0m 20[1m[37me f[0m . [1m[37mf e[0m . . [1m[37mf[0m . [1m[37mf[0m 21 [1m[37mgggg[0m .... [1m[37mgggg gggg[0m .... 22 23 5: 6: 7: 8: 9: 24 [1m[37maaaa aaaa aaaa aaaa aaaa[0m 25[1m[37mb[0m . [1m[37mb[0m . . [1m[37mc b c b c[0m 26[1m[37mb[0m . [1m[37mb[0m . . [1m[37mc b c b c[0m 27 [1m[37mdddd dddd[0m .... [1m[37mdddd dddd[0m 28. [1m[37mf e f[0m . [1m[37mf e f[0m . [1m[37mf[0m 29. [1m[37mf e f[0m . [1m[37mf e f[0m . [1m[37mf[0m 30 [1m[37mgggg gggg[0m .... [1m[37mgggg gggg[0m 31 32So, to render a 1, only segments c and f would be turned on; the rest would be off. To render a 7, 33only segments a, c, and f would be turned on. 34 35The problem is that the signals which control the segments have been mixed up on each display. The 36submarine is still trying to display numbers by producing output on signal wires a through g, but 37those wires are connected to segments [1m[37mrandomly[0m. Worse, the wire/segment connections are mixed up 38separately for each four-digit display! (All of the digits [1m[37mwithin[0m a display use the same 39connections, though.) 40 41So, you might know that only signal wires b and g are turned on, but that doesn't mean 42[1m[37msegments[0m b and g are turned on: the only digit that uses two segments is 1, so it must mean segments 43c and f are meant to be on. With just that information, you still can't tell which wire (b/g) goes 44to which segment (c/f). For that, you'll need to collect more information. 45 46For each display, you watch the changing signals for a while, make a note of [1m[37mall ten unique signal 47patterns[0m you see, and then write down a single [1m[37mfour digit output value[0m (your puzzle input). Using 48the signal patterns, you should be able to work out which pattern corresponds to which digit. 49 50For example, here is what you might see in a single entry in your notes: 51 52acedgfb cdfbe gcdfa fbcad dab cefabd cdfgeb eafb cagedb ab | 53cdfeb fcadb cdfeb cdbaf 54(The entry is wrapped here to two lines so it fits; in your notes, it will all be on a single line.) 55 56Each entry consists of ten [1m[37munique signal patterns[0m, a | delimiter, and finally the [1m[37mfour digit output 57value[0m. Within an entry, the same wire/segment connections are used (but you don't know what the 58connections actually are). The unique signal patterns correspond to the ten different ways the 59submarine tries to render a digit using the current wire/segment connections. Because 7 is the only 60digit that uses three segments, dab in the above example means that to render a 7, signal lines d, 61a, and b are on. Because 4 is the only digit that uses four segments, eafb means that to render a 4, 62signal lines e, a, f, and b are on. 63 64Using this information, you should be able to work out which combination of signal wires corresponds 65to each of the ten digits. Then, you can decode the four digit output value. Unfortunately, in the 66above example, all of the digits in the output value (cdfeb fcadb cdfeb cdbaf) use five segments and 67are more difficult to deduce. 68 69For now, [1m[37mfocus on the easy digits[0m. Consider this larger example: 70 71be cfbegad cbdgef fgaecd cgeb fdcge agebfd fecdb fabcd edb | 72[1m[37mfdgacbe[0m cefdb cefbgd [1m[37mgcbe[0m 73edbfga begcd cbg gc gcadebf fbgde acbgfd abcde gfcbed gfec | 74fcgedb [1m[37mcgb[0m [1m[37mdgebacf[0m [1m[37mgc[0m 75fgaebd cg bdaec gdafb agbcfd gdcbef bgcad gfac gcb cdgabef | 76[1m[37mcg[0m [1m[37mcg[0m fdcagb [1m[37mcbg[0m 77fbegcd cbd adcefb dageb afcb bc aefdc ecdab fgdeca fcdbega | 78efabcd cedba gadfec [1m[37mcb[0m 79aecbfdg fbg gf bafeg dbefa fcge gcbea fcaegb dgceab fcbdga | 80[1m[37mgecf[0m [1m[37megdcabf[0m [1m[37mbgf[0m bfgea 81fgeab ca afcebg bdacfeg cfaedg gcfdb baec bfadeg bafgc acf | 82[1m[37mgebdcfa[0m [1m[37mecba[0m [1m[37mca[0m [1m[37mfadegcb[0m 83dbcfg fgd bdegcaf fgec aegbdf ecdfab fbedc dacgb gdcebf gf | 84[1m[37mcefg[0m dcbef [1m[37mfcge[0m [1m[37mgbcadfe[0m 85bdfegc cbegaf gecbf dfcage bdacg ed bedf ced adcbefg gebcd | 86[1m[37med[0m bcgafe cdgba cbgef 87egadfb cdbfeg cegd fecab cgb gbdefca cg fgcdab egfdb bfceg | 88[1m[37mgbdfcae[0m [1m[37mbgc[0m [1m[37mcg[0m [1m[37mcgb[0m 89gcafb gcf dcaebfg ecagb gf abcdeg gaef cafbge fdbac fegbdc | 90[1m[37mfgae[0m cfgab [1m[37mfg[0m bagce 91 92Because the digits 1, 4, 7, and 8 each use a unique number of segments, you should be able to tell 93which combinations of signals correspond to those digits. Counting [1m[37monly digits in the output 94values[0m (the part after | on each line), in the above example, there are [1m[37m26[0m instances of digits that 95use a unique number of segments (highlighted above). 96 97[1m[37mIn the output values, how many times do digits 1, 4, 7, or 8 appear?[0m 98 99