-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
48 lines (41 loc) · 1.14 KB
/
main.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
from parse import search
with open("input.txt") as f:
code = [search("{}{:d}", x).fixed for x in f]
posx = 0
posy = 0
dirs = ["E", "S", "W", "N"]
ptr = 0
for d, n in code:
if d == "N": posy += n
elif d == "S": posy -= n
elif d == "E": posx += n
elif d == "W": posx -= n
elif d == "L": ptr = (ptr - n // 90) % len(dirs)
elif d == "R": ptr = (ptr + n // 90) % len(dirs)
elif d == "F":
if dirs[ptr] == "N": posy += n
elif dirs[ptr] == "S": posy -= n
elif dirs[ptr] == "E": posx += n
elif dirs[ptr] == "W": posx -= n
print(abs(posx)+abs(posy))
wpx = 10
wpy = 1
posx = 0
posy = 0
for d, n in code:
if d == "N": wpy += n
elif d == "S": wpy -= n
elif d == "E": wpx += n
elif d == "W": wpx -= n
elif d in ("R", "L") and n == 180:
wpx, wpy = -wpx, -wpy
elif d == "R":
if n == 90: wpx, wpy = wpy, -wpx
elif n == 270: wpx, wpy = -wpy, wpx
elif d == "L":
if n == 90: wpx, wpy = -wpy, wpx
elif n == 270: wpx, wpy = wpy, -wpx
elif d == "F":
posx += n * wpx
posy += n * wpy
print(abs(posx)+abs(posy))