22.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. from queue import deque
  2. from itertools import zip_longest
  3. def transpose(l):
  4. return list(zip_longest(*l, fillvalue=None))
  5. def rot_left(grid):
  6. return list(reversed(transpose(grid)))
  7. def rot_right(grid):
  8. return list(transpose(reversed(grid)))
  9. lines = [line[:-1] for line in open("22.input")]
  10. board = [line for line in lines[:-2]]
  11. max_width = max(len(line) for line in board)
  12. board = [line + " " * max(0, max_width - len(line)) for line in board]
  13. pw = deque(lines[-1])
  14. def show(grid):
  15. for line in grid:
  16. for c in line:
  17. print(c, end='')
  18. print("")
  19. pos = ([x for x, c in enumerate(board[0]) if c == '.'][0], 0)
  20. facing = 0
  21. num = ""
  22. def walk(steps):
  23. global pos
  24. for _ in range(steps):
  25. x, y = pos
  26. new_x = pos[0] + 1
  27. if new_x >= len(board[y]) or board[y][new_x] == " ":
  28. new_x = [x for x, c in enumerate(board[y]) if c != " "][0]
  29. if board[y][new_x] == '#':
  30. break
  31. else:
  32. pos = (new_x, y)
  33. def rotate(rot):
  34. global board, pos, facing
  35. if rot == "R":
  36. board = rot_left(board)
  37. x, y = pos
  38. pos = (y, len(board)-x-1)
  39. facing = (facing + 1) % 4
  40. elif rot == "L":
  41. x, y = pos
  42. new_x = len(board) - y - 1
  43. board = rot_right(board)
  44. pos = (new_x, x)
  45. facing = (facing - 1) % 4
  46. while pw:
  47. char = pw.popleft()
  48. if char == 'R' or char == 'L':
  49. steps = int(num)
  50. walk(steps)
  51. rotate(char)
  52. num = ""
  53. else:
  54. num += char
  55. walk(int(num))
  56. final_facing = facing
  57. while facing != 0:
  58. rotate("R")
  59. pos = (pos[0] + 1, pos[1] + 1)
  60. print(pos[1] * 1000 + pos[0] * 4 + final_facing)