File size: 8,423 Bytes
a4da721
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
from copy import deepcopy


def load_data(file):
    with open(file) as f:
        raw_data = f.readlines()

    grid = []
    for line in raw_data:
        line = line.strip("\n")
        grid.append(list(line))
    return grid


def get_end_pos(grid):
    M = len(grid)
    N = len(grid[0])
    for i in range(M):
        for j in range(N):
            if grid[i][j] == "E":
                return (i,j)


class UnvisitedSet:
    # There must definitely better data structures for this...
    def __init__(self, grid):

        self.grid = grid
        self.visited = deepcopy(grid)
        self.values = []  # Store here the (min_value, pos, direction) where pos = (i,j) is position in grid

        M = len(grid)
        N = len(grid[0])
        for i in range(M):
            for j in range(N):
                self.visited[i][j] = False
                pos = (i, j)
                if grid[i][j] == "S":
                    self.values.append([0, pos, ">"])
                else:
                    self.values.append([float("inf"), pos, ""])


    def update_value(self, new_pos, new_val, new_dir):
        for idx, (val, pos, d) in enumerate(self.values):
            if new_pos == pos and new_val < val:
                self.values[idx] = [new_val, new_pos, new_dir]
                break

        self.sort_values()


    def get_value(self, pos):
        for (v, p, d) in self.values:
            if pos == p:
                return v


    def get_direction(self, pos):
        for (v, p, d) in self.values:
            if pos == p:
                return d


    def mark_visited(self, pos):
        i, j = pos
        self.visited[i][j] = True


    def sort_values(self):
        self.values.sort(key=lambda x: x[0])

    def get_min_unvisited(self):
        self.sort_values()
        for val, pos, d in self.values:
            i,j = pos
            if not self.visited[i][j] and val < float("inf"):
                return val, pos, d
        return "empty", "empty", "empty"

    def values_to_grid(self):
        new_grid = deepcopy(self.grid)

        for value, pos, _ in self.values:
            i, j = pos
            if value < float("inf"):
                new_grid[i][j] = "O"

        return new_grid


def pprint(grid):
    grid_str = "\n".join(["".join(str(l)) for l in grid])
    print(grid_str)


def pprint2(grid):
    grid_str = "\n".join(["".join(l) for l in grid])
    print(grid_str)


def get_neighbours(pos, grid):
    directions = [(0,1), (1,0), (-1,0), (0, -1)]

    M = len(grid)
    N = len(grid[0])

    ns = []
    i, j = pos
    for dx, dy in directions:
        ni, nj = (i+dx, j+dy)
        if ni in range(M) and nj in range(N):
            if grid[ni][nj] != "#":
                ns.append((ni, nj))

    return ns


def get_cost(pos, next_pos, direction):
    # Only valid if we are moving at most 1 neighbor away

    i, j = pos
    ni, nj = next_pos

    if (ni - i) > 0:
        intended_direction = "^"
    elif (ni - i) < 0:
        intended_direction = "v"
    elif (nj - j) > 0:
        intended_direction = ">"
    elif (nj - j) < 0:
        intended_direction = "<"
    else:
        raise ValueError("Debug?")

    if direction == intended_direction:
        cost = 1

    elif direction == "^" and intended_direction == "v":
        cost =  2001

    elif direction == "v" and intended_direction == "^":
        cost =  2001

    elif direction == ">" and intended_direction == "<":
        cost =  2001

    elif direction == "<" and intended_direction == ">":
        cost =  2001

    else:
        # Every other case involves a 90deg rotation
        cost = 1001

    return cost, intended_direction


file = "input.txt"
#  file = "test2.txt"
grid = load_data(file)

def djikstra(grid):
    end_pos = get_end_pos(grid)
    unvisited_set = UnvisitedSet(grid)

    ei, ej = end_pos
    while not unvisited_set.visited[ei][ej]:
        val, pos, d = unvisited_set.get_min_unvisited()
        ns = get_neighbours(pos, grid)


        for next_pos in ns:
            cost, next_dir = get_cost(pos, next_pos, d)
            unvisited_set.update_value(next_pos, val+cost, next_dir)


        unvisited_set.mark_visited(pos)

    return unvisited_set

unvisited_set = djikstra(grid)
end_pos = get_end_pos(grid)
print(unvisited_set.get_value(end_pos))



# ## Part 2

# #  def djikstra(grid):
# #      end_pos = get_end_pos(grid)
# #      unvisited_set = UnvisitedSet(grid)
# #
# #      ei, ej = end_pos
# #      while not unvisited_set.visited[ei][ej]:
# #
# #          val, pos, d = unvisited_set.get_min_unvisited()
# #          i, j = pos
# #          if unvisited_set.visited[i][j]:
# #              continue
# #
# #          ns = get_neighbours(pos, grid)
# #
# #
# #
# #          for next_pos in ns:
# #              cost, next_dir = get_cost(pos, next_pos, d)
# #              unvisited_set.update_value(next_pos, val+cost, next_dir)
# #
# #          unvisited_set.mark_visited(pos)
# #
# #      return unvisited_set

# #  file = "test.txt"
# #  file = "input.txt"
# file = "test2.txt"
# #  file = "input.txt"
# grid = load_data(file)
# end_pos = get_end_pos(grid)
# unvisited_set = djikstra(grid)
# end_pos = get_end_pos(grid)



# def draw_grid_from_paths(grid, min_paths):
#     grid_copy = deepcopy(grid)

#     for pos in min_paths:
#         i,j = pos
#         grid_copy[i][j] = "O"

#     #  pprint2(grid_copy)

#     return grid_copy


# # Here we will get all points in the minimum path backtracking back to the start point
# min_paths = [end_pos]
# #  for direction in [">", "^"]:
# #  direction = ">"
# queue = [(end_pos, "v"), (end_pos, "<")]
# visited = set()
# unvisited_set.update_value((1, 14), float("inf"), new_dir = "v")


# while len(queue) > 0:
#     pos, direction = queue.pop(0)

#     if pos in visited:
#         continue
#     val = unvisited_set.get_value(pos)
#     end_val = unvisited_set.get_value(end_pos)
#     #  direction = unvisited_set.get_direction(pos)

#     ns = get_neighbours(pos, grid)
#     n_vals_pos_dirs = []
#     for n_pos in ns:
#         n_val = unvisited_set.get_value(n_pos)
#         n_dir = unvisited_set.get_direction(n_pos)
#         n_vals_pos_dirs.append((n_val, n_pos, n_dir))

#     #  print(pos)
#     #  print(val)
#     #  print(n_vals_pos_dirs)
#     #  print()
#     #  print()

#     # Work backwards and subtract cost

#     pprint2(draw_grid_from_paths(grid, min_paths))
#     for n_val, n_pos, _ in n_vals_pos_dirs:

#         if n_pos in visited:
#             continue
#         #  if pos == end_pos:
#         #      cost = 1
#         #  else:
#         #  cost, n_dir = get_cost(pos, n_pos, direction)
#         cost, n_dir = get_cost(n_pos, pos, direction)
#         print(pos, n_pos, cost, direction, n_dir)


#         import ipdb; ipdb.set_trace();

#         if n_val > end_val:
#             continue
#         #  if n_val - (val - cost) >= 0:
#         if n_val <= (val - cost):
#             min_paths.append(n_pos)
#             pprint2(draw_grid_from_paths(grid, min_paths))

#             if n_pos not in visited:
#                 queue.append((n_pos, n_dir))
#     visited.add(pos)
#     #  draw_grid_from_paths(grid, min_paths)
#     #  print()
# #

# #
# #  while len(queue) > 0:
# #      pos = queue.pop(0)
# #      ns = get_neighbours(pos, grid)
# #
# #      if pos in visited:
# #          continue
# #
# #      n_vals_pos = []
# #      for n_pos in ns:
# #          n_val = unvisited_set.get_value(n_pos)
# #          n_vals_pos.append((n_val, n_pos))
# #
# #      n_vals_not_inf = sum([val < float("inf") for val, pos in n_vals_pos])
# #      if n_vals_not_inf > 0:
# #          for n in ns:
# #              queue.append(n)
# #          min_paths.append(pos)
# #      else:
# #          print("Here")
# #
# #      visited.add(pos)



# print(len(set(min_paths)))









# #  import numpy as np
# #  import matplotlib.pyplot as plt
# #
# #  grid_copy = deepcopy(grid)
# #  M = len(grid_copy)
# #  N = len(grid_copy[0])
# #  for value in unvisited_set.values:
# #      val, pos, dir = value
# #      i, j = pos
# #      grid_copy[i][j] = val if val != float("inf") else grid[i][j]
# #  for i in range(M):
# #      for j in range(N):
# #          if grid_copy[i][j] == "#":
# #              grid_copy[i][j] = -1
# #          if grid_copy[i][j] == ".":
# #              grid_copy[i][j] = 0
# #  arr = np.array(grid_copy)
# #  plt.figure()
# #
# #  plt.imshow(arr)