1,3,5,8 work
This commit is contained in:
parent
a7578c2bc2
commit
d8700a280f
@ -59,20 +59,24 @@ def part2(mx):
|
|||||||
# This 'a' is in a puddle of 'c's, so it's not pathable
|
# This 'a' is in a puddle of 'c's, so it's not pathable
|
||||||
pass
|
pass
|
||||||
shortest = min(paths, key=lambda x: x.total_cost)
|
shortest = min(paths, key=lambda x: x.total_cost)
|
||||||
matrix.apply_to_all(mx, lambda x: chr(x+ord('a'))) # Back to letters, single char prettier
|
# matrix.apply_to_all(mx, lambda x: chr(x+ord('a'))) # Back to letters, single char prettier
|
||||||
all_visited = []
|
# all_visited = []
|
||||||
for p in paths:
|
# for p in paths:
|
||||||
all_visited.extend(p.nodes)
|
# all_visited.extend(p.nodes)
|
||||||
all_visited = list(set(all_visited))
|
# all_visited = list(set(all_visited))
|
||||||
matrix.highlight(mx, red=all_visited, blink_green=shortest.nodes)
|
# matrix.highlight(mx, red=all_visited, blink_green=shortest.nodes)
|
||||||
print(shortest.total_cost)
|
print(shortest.total_cost)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
mx = matrix.load_matrix_file(shared.get_fname(12), matrix.split_word_to_chr_list)
|
mx = matrix.load_matrix_file(shared.get_fname(12), matrix.split_word_to_chr_list)
|
||||||
|
with shared.elapsed_timer() as elapsed:
|
||||||
part1(mx)
|
part1(mx)
|
||||||
|
print(elapsed())
|
||||||
mx = matrix.load_matrix_file(shared.get_fname(12), matrix.split_word_to_chr_list)
|
mx = matrix.load_matrix_file(shared.get_fname(12), matrix.split_word_to_chr_list)
|
||||||
|
with shared.elapsed_timer() as elapsed:
|
||||||
part2(mx)
|
part2(mx)
|
||||||
|
print(elapsed())
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
92
2022/python/day13.py
Normal file
92
2022/python/day13.py
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
from pprint import pprint as pp
|
||||||
|
import matrix
|
||||||
|
import shared
|
||||||
|
import itertools
|
||||||
|
|
||||||
|
class BREAK(Exception):
|
||||||
|
...
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def part1(rows):
|
||||||
|
groups = [list(v) for k, v in itertools.groupby(rows, key=lambda x: not x) if not k]
|
||||||
|
for idx, (left, right) in enumerate(groups):
|
||||||
|
left = eval(left)
|
||||||
|
right = eval(right)
|
||||||
|
passes = check_group(idx+1, left, right)
|
||||||
|
if passes is True:
|
||||||
|
print(f"{matrix.colors.GREEN}{passes}{matrix.colors.ENDC}")
|
||||||
|
elif passes is False:
|
||||||
|
print(f"{matrix.colors.RED}{passes}{matrix.colors.ENDC}")
|
||||||
|
else:
|
||||||
|
print(f"{matrix.colors.BLUE}{passes}{matrix.colors.ENDC}")
|
||||||
|
print("\n")
|
||||||
|
|
||||||
|
|
||||||
|
def check_group(list_num, left, right):
|
||||||
|
if list_num > 0:
|
||||||
|
print(f"== Pair {list_num} ==")
|
||||||
|
print(f"Compare {left} vs {right}")
|
||||||
|
for idx, _ in enumerate(left):
|
||||||
|
print("starting for")
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
print("starting while")
|
||||||
|
try:
|
||||||
|
if isinstance(left[idx], int) and isinstance(right[idx], int):
|
||||||
|
print(f" - Compare {left[idx]} vs {right[idx]}")
|
||||||
|
if left[idx] == right[idx]:
|
||||||
|
print(".......BREAK")
|
||||||
|
raise BREAK()
|
||||||
|
if left[idx] > right[idx]:
|
||||||
|
print(" - Right is Smaller, so inputs IN WRONG ORDER")
|
||||||
|
print("....RET-FALSE")
|
||||||
|
return False
|
||||||
|
if left[idx] < right[idx]:
|
||||||
|
print(" - Left is Smaller, so inputs IN RIGHT ORDER")
|
||||||
|
print("....RET-TRUE")
|
||||||
|
return True
|
||||||
|
except IndexError:
|
||||||
|
print("INDEX ERROR RIGHT RAN OUT")
|
||||||
|
return False
|
||||||
|
|
||||||
|
try:
|
||||||
|
if isinstance(left[idx], list) and isinstance(right[idx], list):
|
||||||
|
print(f" - Compare {left[idx]} vs {right[idx]}")
|
||||||
|
return check_group(-1, left[idx], right[idx])
|
||||||
|
except IndexError:
|
||||||
|
print("INDEX ERROR LEFT RAN OUT")
|
||||||
|
return True
|
||||||
|
|
||||||
|
#print(f"TEST: {repr(left[idx])} vs {repr(right[idx])}")
|
||||||
|
|
||||||
|
if isinstance(left[idx], int) and isinstance(right[idx], list):
|
||||||
|
left[idx] = [ left[idx], ]
|
||||||
|
print("convert left to list")
|
||||||
|
continue
|
||||||
|
if isinstance(left[idx], list) and isinstance(right[idx], int):
|
||||||
|
right[idx] = [ right[idx], ]
|
||||||
|
print(f"convert right {right[idx]} to list")
|
||||||
|
continue
|
||||||
|
except BREAK:
|
||||||
|
print("......broke out of while")
|
||||||
|
continue
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def part2(rows):
|
||||||
|
print(rows)
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
rows = shared.load_rows(13)
|
||||||
|
with shared.elapsed_timer() as elapsed:
|
||||||
|
part1(rows)
|
||||||
|
print(elapsed())
|
||||||
|
# with shared.elapsed_timer() as elapsed:
|
||||||
|
# part2(rows)
|
||||||
|
# print(elapsed())
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
@ -237,7 +237,7 @@ def pmx(*matrices, pad=True, space=True):
|
|||||||
print("".join([f(x) for x in c]))
|
print("".join([f(x) for x in c]))
|
||||||
|
|
||||||
|
|
||||||
def ppmx(*matrices, pad=True, space=True, zero='.'):
|
def ppmx(*matrices, pad=True, space=True, zero="."):
|
||||||
"""
|
"""
|
||||||
print a matrix of anything, Falsy values turns to `.` for clarity
|
print a matrix of anything, Falsy values turns to `.` for clarity
|
||||||
"""
|
"""
|
||||||
@ -285,4 +285,4 @@ def highlight(matrix, red=[], green=[], blue=[], blink_green=[]):
|
|||||||
for (y, x) in blink_green:
|
for (y, x) in blink_green:
|
||||||
new = f"{colors.BLINK}{colors.GREEN}{mx[y][x]}{colors.ENDC}"
|
new = f"{colors.BLINK}{colors.GREEN}{mx[y][x]}{colors.ENDC}"
|
||||||
mx[y][x] = new
|
mx[y][x] = new
|
||||||
ppmx(mx, pad=False, space=True, zero='0')
|
ppmx(mx, pad=False, space=True, zero="0")
|
||||||
|
Loading…
Reference in New Issue
Block a user