I finally did it.
I was on-site for the 2016 MIT Mystery Hunt. I even solved a metapuzzle. This year I hunted with ✈✈✈ Galactic Trendsetters ✈✈✈, the team primarily but not overwhelmingly formed from floorpi, my dorm floor. (Perhaps somewhat regrettably, I didn’t contribute to any events or runarounds or things given to HQ, unless you count attending a “recitation” for Student Simulator (round King Arthur, second from left).)
(Also, I made this post. Has it been two weeks already? Okay, that’s not an unusual timeframe.)
But wow, I got to touch so many puzzles.
Non-spoilery comments on particularly memorable puzzles I did, which are disproportionately programming-related, if anybody wants to look at them (I am describing how to get to the puzzle from the round instead of linking because I’m lazy and links might rot but the instructions will hopefully survive archival (although turns out there’s actually a table of contents so I don’t know what I’m doing)):
- identify, SORT, index, solve (round Sleeping Beauty, bottom-right) is my favorite puzzle. Since I probably have a lot of readers in that direction, I should mention it’s also math-related!
- Time Suck (round Endymion, second from left in bottom row) is hilarious and pretty fun, too. Programming/scripting/hacking-things-together ability helps, but I suppose you can do this the long titular way if you want…
- ASCII Characters (round Rip Van Winkle, top pin behind the center one): I enjoyed the first part, but am pretty dissatisfied with the second, even though we managed to get it eventually (more precisely, while some of us working on it had gotten stuck and left our hunt room to get burritos, phenomist guessed it remotely).
- Luminance Shift (round Ysera, rightmost in Your Hand) was fun. I guess I might only complain that it’s not quite as cohesive as I like my puzzles to be.
- Unimaginably Twisted Files (round Sleeping Beauty, one below top-center) was fun but we got stuck several times.
- I did the Sleeping Gypsy meta! I even managed to backsolve one and a half answers from it! It was exhilarating!
Non-spoilery comments on cool puzzles I looked at but didn’t solve much of:
- CLICK TO WIN!!! (round King Arthur, center): Cute use of the medium.
- Replication (round Ysera, second from left in Enemy Side): Just look at this thing. Seriously, just look at it.
- Quantum Minesweeper (round Pam Ewing, bottom-left): Also cute to behold.
And non-puzzly final observations:
- I also got to meet quite a few friends who flew in for hunt! Perhaps most notably, I thought very hard and discussed with lots of people in order to come up with an interesting and robust protocol for meeting and recognizing Yoshiap, which we didn’t end up using, I ended up just visibly sending a chat over Hangouts saying “!!!”; even though I don’t know how often I’ll be in a similar situation again, suggestions for cooler protocols would be much appreciated, if only for mental gratification. Also unfortunately there were a few other people I only got to wave at. Oh well, there are probably still quite a few more next times.
- The first morning, I got 4 hours of sleep. No regrets. I think sleep deprivation really only set in a few days later, but boy, that was quite the experience and totally worth it.
- I got to look at somebody’s screen and ask somebody “What Flight are you on?”
- Verbally following up to the title is so fun.
- Does Holden Lee read my blog????????
Oh well, back to normal life…
edit: Spoilery comments are below. Cool, I can keep everything in one post now.First, ones I contributed anything notable to:
- Ladder Dogs (Dog Show, Obstacles, bottom unsolved): got a few clues and noticed the alphabet to sort by for the final step. Pretty standard puzzle, but with an impressive number of dog-themed cryptic clues.
- Before and After (Dog Show, Obedience, bottom unsolved): got a few clues, failed to extract, although somebody else found the solution quickly. I guess the idea of reading letters independently after classifying is something to learn.
- Meshed Together (Dog Show, Tracking, third from top): got a few clues via regexing. Made several realizations, including how the final cluephrase produced an answer, independently after others had already made those realizations. Called in the correct answer after somebody else already did. Oops. Online cooperation is hard. That was pretty cute, though.
-
Off The Leash (Dog Show, Obstacles, fourth from top): Wow. We were super stuck on this until I regexed the trigrams in a insane (that’s literally the adjective the documentation describes it with) SCOWL word list to find
GUILDENSTERN
and somebody recognized it. I stayed on this puzzle as primary regexer, contributing roughly nothing else. I guess SOWPODS isn’t good enough sometimes. -
ASCII Characters (round Rip Van Winkle, top pin behind the center one): I did primary scripting and visual selecting on this one. I have to thank whoever factored the numbers right away onto our Google sheet for cutting out a lot of trial and error on my part. (edit: Turns out this was also phenomist.)
We debated who would script this for a bit. After I thought about it I realized that with Haskell and the
split
package, it’s really a single line,interact $ unlines . chunksOf n . filter (not . isSpace)
, modulo command-line argument reading. So I did that and cut out the images with Vim’s visual block selection (which is amazing) and produced all twelve images.We got very stuck after getting the four groups of three images and making sketchy guesses for two and a half of the groups, though. While our local group was getting burritos (perhaps the only legitimate meal I ate during hunt), phenomist miraculously guessed the final answer remotely.
I enjoyed the starting text-handling mechanic, but am quite dissatisfied with the way the pictures cluing things; it felt unrelated to the previous step and hacky, with two clues being perfect substring removals and two being in the uncanny valley of being just a little bit fiddly to make work. Also, the answer length was such that each set could have neatly clued two letters; that’s another reason to think there could have been a much better second stage to this puzzle. Oh well. - identify, SORT, index, solve: This is just great. I learned that WolframAlpha can calculate power towers. I don’t know if I actually helped mathematically; I might have been net negative utility here. Still, I provided the code for computing the lexicographical ranking since I had it pretty much ready, and I also figured out what we were identifying and provided some sheets magic. I think this is my favorite puzzle of the hunt, in no small part also due to the theme subverting classic puzzle tropes. I also appreciated what I considered the well-calibrated difficulty of the “identify” step — not obvious, but suitably easy when compared to how hard SORTing was, mostly due to the unambiguous nature of the first picture, while also being fair and thematic.
- Unimaginably Twisted Files: jakobw did most of the encoding parsing at first. Afterwards I did the second stage and extracted a bunch of bits. Afterwards, I got stuck again; I recognized that a definitely statistically significant number of the resulting bytes had a second bit set, but couldn’t get anything out of it. The next morning somebody picked up where I had left and solved it accidentally by missing the first bit in his selection when copy-pasting, turning it into parseable text. It turns out the first bit came from a byte order mark at the start of the file that was supposed to verify that it was UTF-8 and then discarded, but which we kept, and which I guess I actually came close to discovering but failed — I had seen that somehow the first line of the first resulting paragraph had one more character than the other first lines, and the other lines corresponded perfectly with regards to length, before giving up. Gah. Follow through observations next time, self.
-
Luminance Shift: Fun. I did most of the coding. A Python script using
Like I wrote, though, I feel like poking at the color components, working out their structure, and then realizing that the components spelled out letters in a 2D grid felt somewhat unrelated. It was kind of unsatisfying to see all in the same puzzle without any obvious thematic link. It was still enjoyable, though I can imagine it not being enjoyable if we didn’t manage to solve it.requests
pumped the POST into a textfile and a whole bunch of other Python scripts parsed things out of it in weird ways. It was done in such an edge-of-the-seat manner that I ended up with some exception-terminated loops with stderr silenced and a Perl script repeatedly invoking the other Python scripts throughsystem
. - Trail Goods: Fairly standard, but the process of identifying stuff with pizens was fun. I did this on floorpi instead of our hunting classroom because I was tired.
-
Student Simulator: An interesting puzzle model in which we had to attend “office hours”, at which a “TA” would show us how to solve example problems and we had to apply the same process to things in the pset. After attending and discussing with the first guy, we got P for the first part, I and Q for the second part, and D,A,T,H for the third part. I implored our team to solve it before I woke up the third day. They did; apparently you were supposed to keep all the punctuation in the third part. Eh, not entirely unfair, but not too satisfying to me; it feels like a step with a lot of degrees of freedom even in addition to that (where do you cut the strings, actually? do you keep spaces?) and keeping punctuation does not feel like what puzzle conventions would point to for me.
I didn’t follow how we eventually solved this puzzle, but we got PIQAD and it clued the answer. -
Sleeping Gypsy meta: I noticed this a few times but thought the other programmers had it taken care of, failing to communicate my experience with Piet. After wandering around more, it seems I was the one most familiar with it. So I manually figured out what the Piet was doing, hacking my way through Jackson Pollock by guessing that the “subtract 2” below it called for a 9 squared. After I worked things out up to the fourth clue, I watched as our team got Cubism next to me (also, the sight of Yoshiap colorfully constructing the figure in Minecraft); I finally guessed my way through the seventh clue and allowed our team to call in the answer based on BITE OFF E*. Afterwards I even managed to guess the last five letters of the final answer, for Sculptural Disassembly, and get it backsolved.
That was a really, really awesome experience.
I feel like the meta design itself was a bit odd, though, since the leap to Piet, clued by red blocks in the second to sixth words, was not too unreasonable even without seeing those words (our team suspected it even before seeing the red blocks; once I tried simulating the first row, I was 100% certain), and the meta disproportionately required the first puzzle answer to give the entire first word of the meta answer. So I guess the state of the meta might have been pretty sad if we got everything except that first puzzle, Disappointment, which sounds undesirable for meta principles? I guess Disappointment was an advantageous puzzle for our team, so it would be unlikely to happen to us, but it might happen to somebody else. This is getting overly speculative though. -
Jackson Pollock (round Sleeping Beauty, fourth from top), while we’re on the subject: with my progress, we backsolved this eventually, very late.
I am annoyed at this puzzle because another solver and I found surprising equal patterns in the frequencies of component values periods and were convinced we were onto something.
The value 0 occurred the most often as a component. They got rarer, but with significant jumpy irregularities that matched perfectly across the three color channels. Value 7 occurred significantly more rarely than 6 or 8; 10 occurred more rarely than 9 or 11; and so on. 32 is the first value that doesn’t occur at all, next to components that appear at least 0.5% of the time. The next values that don’t occur are 37, 41, 45, 48, 51, and so on. After finding this, we tried fitting the sequence of to some integer division or logarithmic function. But it was all a big red herring. Sigh. -
Time Suck (round Endymion, second from left in bottom row): As I said, a hilarious puzzle. Some people tried watching the whole thing on 25x speed or something as I managed to get ffmpeg to spit out 35,998 .png files — I guess it was
I also got us unstuck by suggesting we concatenate the timestamp components to get a number, instead of converting to number of seconds. It was really exciting when one of us circled back to listening to the video, figuring out first that a voice was saying something, and then, after a lot of strained interpretations by various people, that the voice was actually saying numbers that were perfect for indexing (not more letters).ffmpeg -i time.3gp -r 1/1 $filename%03d.png
? — and hacked some old Scala programs of mine to look for whiteness and find the frames with letters. Apparently I’m a better scripter than I thought?
And now for puzzles I just looked at:
- A Quick Sudoku (round Dreamtime, 5.2): what
- CLICK TO WIN!!! (round King Arthur, center): I don’t know how well it solved, but it seems to be an impressive and creative use of the medium.
- Everything You Read (round Vote for Opus): A nice thing to make a puzzle about, but, like, what even is this extraction method?
- Haddock Walk (round Ysera, rightmost card on Your Side): I confess, I was narcissistic enough that the first thing I did was ctrl-F the three puzzles I wrote last time. This actually gave a break-in because one of them was actually used, and being the author let me know right away it wasn’t about laddergrams, so that was pretty cool. We didn’t end up solving this, though. In the post-mortem we decided that if we summed the enumerations, we would have been able to realize we wanted to extract three letters from each incorrect puzzle, and since I had actually thought about the puzzle depths enough to include them in the spreadsheet, the solution would have been within our reach. Oh well, that’s a lesson for next time.
- Is That Even Music? (round Vote for Opus): I don’t actually know what this was, but I managed to translate a few letters to Morse code on sight, so yay.
- Quantum Minesweeper (round Pam Ewing, bottom-left): Unfortunately, because I was asleep, I only got to hear about Yoshiap’s overpoweredness on this puzzle secondhand. But wow.
- Reaching For The Stars (round King Arthur, just right of center): Darn, we didn’t manage to extract and so missed the obligatory fun video making part of the hunt. At least this extraction method kind of made sense.
- Replication (round Ysera, second from left in Enemy Side): I think we worked on this for hours before abandoning it, which is sad, but hey, it’s one of those puzzles that’s just amazing to behold and read the solution to. (I guess I wouldn’t have this nice feeling about it if I had actually unsuccessfully worked on it a lot during the hunt though.)
- The White House Or Bust! (round Vote for Opus): “This puzzle is about boobs. That’s all you need to know.”
- To Serve and Protect (round King Arthur, rightmost): Slitherlinks make me happy, but turns out I’m now extremely rusty at them. Anyway, somebody else solved this quickly. I may stop listing logic puzzles as one of my specialties.