day 12 python tweaks

main
magical 2022-12-12 11:06:05 -08:00
parent 6c62ff8a9d
commit e378777cd3
1 changed files with 41 additions and 34 deletions

View File

@ -1,52 +1,59 @@
data = open("input").read().splitlines(False)
import heapq import heapq
import string import string
chars = 'ES'+string.ascii_lowercase chars = 'ES'+string.ascii_lowercase
data = open("input").read().splitlines(False)
data = [list(map(chars.index, line)) for line in data] data = [list(map(chars.index, line)) for line in data]
#print(data) #print(data)
def get(x, y): def get(x, y):
return data[y][x] return data[y][x]
q = [] extra = []
for x in range(len(data[0])): for x in range(len(data[0])):
for y in range(len(data)): for y in range(len(data)):
if get(x,y) == 1: if get(x,y) == 1: # 'S'
data[y][x] = chars.index('a') data[y][x] = chars.index('a')
start = (x,y) start = (x,y)
elif get(x,y) == 0: elif get(x,y) == 0: # 'E'
data[y][x] = chars.index('z') data[y][x] = chars.index('z')
goal = (x,y) goal = (x,y)
elif get(x,y) == 2: elif get(x,y) == 2: # 'a'
# part 2 # for part 2
q.append((0,(x,y))) extra.append((x,y))
pass
q.append((0, start)) def solve(part):
path = {} q = [(0, start)]
while q:
cost, (x,y) = heapq.heappop(q)
if (x,y) in path:
continue
#print(x,y,cost)
if (x,y) == goal:
print('found', cost)
break
here = get(x,y)
path[(x,y)] = cost
n = [] if part == 2:
def check(x,y): q.extend((0,p) for p in extra)
if 0 <= y < len(data):
if 0 <= x < len(data[y]):
if get(x,y) <= here+1 and (x,y) not in path:
n.append((cost+1, (x,y)))
check(x-1, y)
check(x+1,y)
check(x, y-1)
check(x, y+1)
for p in n: done = {}
heapq.heappush(q, p) while q:
cost, (x,y) = heapq.heappop(q)
if (x,y) in done:
continue
#print(x,y,cost)
if (x,y) == goal:
print('found', cost)
break
here = get(x,y)
done[(x,y)] = cost
n = []
def check(x,y):
if 0 <= y < len(data):
if 0 <= x < len(data[y]):
if get(x,y) <= here+1 and (x,y) not in done:
n.append((cost+1, (x,y)))
check(x-1, y)
check(x+1,y)
check(x, y-1)
check(x, y+1)
for p in n:
heapq.heappush(q, p)
solve(1)
solve(2)