day05: Day 05: A Maze of Twisty Trampolines, All Alike

Description Usage Arguments Details Examples

Description

A Maze of Twisty Trampolines, All Alike

Usage

1
2
3

Arguments

x

a sequence of jump offsets

Details

Part One

An urgent interrupt arrives from the CPU: it's trapped in a maze of jump instructions, and it would like assistance from any programs with spare cycles to help find the exit.

The message includes a list of the offsets for each jump. Jumps are relative: -1 moves to the previous instruction, and 2 skips the next one. Start at the first instruction in the list. The goal is to follow the jumps until one leads outside the list.

In addition, these instructions are a little strange; after each jump, the offset of that instruction increases by 1. So, if you come across an offset of 3, you would move three instructions forward, but change it to a 4 for the next time it is encountered.

For example, consider the following list of jump offsets:

1
2
3
4
5
0
3
0
1
-3

Positive jumps ("forward") move downward; negative jumps move upward. For legibility in this example, these offset values will be written all on one line, with the current instruction marked in parentheses. The following steps would be taken before an exit is found:

In this example, the exit is reached in 5 steps.

How many steps does it take to reach the exit?

Part Two

Now, the jumps are even stranger: after each jump, if the offset was three or more, instead decrease it by 1. Otherwise, increase it by 1 as before.

Using this rule with the above example, the process now takes 10 steps, and the offset values after finding the exit are left as 2 3 2 3 -1.

How many steps does it now take to reach the exit?

Examples

1
2
3
4
# Uses the first increment rule
find_time_to_escape_trampolines("0\n3\n0\n1\n-3")
# Uses the second increment rule
find_time_to_escape_twistolines("0\n3\n0\n1\n-3")

tjmahr/adventofcode17 documentation built on May 30, 2019, 2:29 p.m.