-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent2017_5.py
54 lines (47 loc) · 1.62 KB
/
advent2017_5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
# http://adventofcode.com/2017
import math
from itertools import cycle, dropwhile, permutations
from functools import lru_cache
from collections import Counter
from pprint import pprint
def process(instructions):
step_number = 0
current_index = 1
next_index = 1
current_value = instructions[current_index]
while True:
try:
step_number += 1
current_index = next_index
jump_value = instructions[current_index]
instructions[current_index] += 1
next_index = current_index + jump_value
current_value = instructions[next_index]
except (KeyError, IndexError) as e:
return step_number
def process_3_or_more(instructions):
step_number = 0
current_index = 1
next_index = 1
current_value = instructions[current_index]
while True:
try:
step_number += 1
current_index = next_index
jump_value = instructions[current_index]
if jump_value >= 3:
instructions[current_index] -= 1
else:
instructions[current_index] += 1
next_index = current_index + jump_value
current_value = instructions[next_index]
except (KeyError, IndexError) as e:
return step_number
if __name__ == "__main__":
instructions = dict()
with open("input_advent2017_5.txt") as file:
for index, line in enumerate(file, 1):
instructions[index] = int(line.strip())
print(process_3_or_more({1: 0, 2: 3, 3: 0, 4: 1, 5: -3}))
print(process_3_or_more(instructions))