-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path36.py
45 lines (38 loc) · 1.42 KB
/
36.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
from astar import AStar
from math import hypot
f = open("35.in")
coords = []
for line in f.readlines():
coords.append(tuple(map(int, line.split(","))))
class Solver(AStar):
walls = []
bounds = 0
def __init__(self, walls, bounds):
super().__init__()
self.walls = walls
self.bounds = bounds
def astar(self, start, reversePath = False):
return super().astar(start, (self.bounds, self.bounds), reversePath)
def neighbors(self, node):
ret = []
if (node[0] + 1, node[1]) not in self.walls and node[0] + 1 <= self.bounds:
ret.append((node[0] + 1, node[1]))
if (node[0] - 1, node[1]) not in self.walls and node[0] - 1 >= 0:
ret.append((node[0] - 1, node[1]))
if (node[0], node[1] + 1) not in self.walls and node[1] + 1 <= self.bounds:
ret.append((node[0], node[1] + 1))
if (node[0], node[1] - 1) not in self.walls and node[1] - 1 >= 0:
ret.append((node[0], node[1] - 1))
return ret
def distance_between(self, n1, n2):
return 1
def heuristic_cost_estimate(self, current, goal):
return hypot(goal[0] - current[0], goal[1] - current[1])
solver = Solver(coords[:1024], 70)
for i in range(1024, len(coords)):
print("Trying:", i)
solver.walls.append(coords[i])
path = solver.astar((0,0))
if path == None:
print("Blocked on:", coords[i])
break