-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent2016_1.py
102 lines (85 loc) · 2.51 KB
/
advent2016_1.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env python
# http://adventofcode.com/2016
from itertools import cycle
import logging as log
log.basicConfig(level=log.DEBUG, format="%(asctime)s - %(levelname)s - %(message)s")
directions = ("N", "E", "S", "W")
def location(xstart, ystart, turn, distance, current_direction):
x, y = xstart, ystart
c = cycle(directions)
cur = next(c)
while cur != current_direction:
cur = next(c)
if turn == "R":
cur = next(c)
elif turn == "L":
for _ in range(3):
cur = next(c)
if cur == "N":
y += distance
elif cur == "S":
y -= distance
elif cur == "E":
x += distance
elif cur == "W":
x -= distance
return x, y, cur
def location2(xstart, ystart, turn, distance, current_direction, visited):
x, y = xstart, ystart
c = cycle(directions)
cur = next(c)
while cur != current_direction:
cur = next(c)
if turn == "R":
cur = next(c)
elif turn == "L":
for _ in range(3):
cur = next(c)
if cur == "N":
for _ in range(distance):
y += 1
if (x, y) in visited:
print(x, y)
visited.append((x, y))
elif cur == "S":
for _ in range(distance):
y -= 1
if (x, y) in visited:
print(x, y)
visited.append((x, y))
elif cur == "E":
for _ in range(distance):
x += 1
if (x, y) in visited:
print(x, y)
visited.append((x, y))
elif cur == "W":
for _ in range(distance):
x -= 1
if (x, y) in visited:
print(x, y)
visited.append((x, y))
return x, y, cur, visited
def seen2(L):
seen = set()
seen2 = set()
seen_add = seen.add
seen2_add = seen2.add
for item in L:
if item in seen:
seen2_add(item)
else:
seen_add(item)
return seen2
if __name__ == "__main__":
x, y, d = 0, 0, "N"
visited = [(x, y)]
with open("advent2016-1_input.txt") as file:
for line in file:
for entry in line.split(", "):
x, y, d, visited = location2(
x, y, str(entry[0]), int(entry[1:]), d, visited
)
# log.debug('{} {} {} {}'.format(x, y, d, entry))
# log.debug('{}'.format(visited))
# print(seen2(visited))