Merge branch 'master' of https://gitea.baerentsen.space/FrederikBaerentsen/AdventOfCode
This commit is contained in:
commit
d55b9df928
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
|||||||
input
|
input
|
||||||
.env
|
.env
|
||||||
test
|
test
|
||||||
|
test*
|
||||||
p2.py
|
p2.py
|
||||||
r/*
|
r/*
|
||||||
|
|
||||||
|
@ -5,41 +5,35 @@ sys.path.insert(0, '../../')
|
|||||||
from fred import list2int,get_re,nprint,lprint,grid_valid,loadFile,subTuples,addTuples,toGrid,get_value_in_direction
|
from fred import list2int,get_re,nprint,lprint,grid_valid,loadFile,subTuples,addTuples,toGrid,get_value_in_direction
|
||||||
start_time = time.time()
|
start_time = time.time()
|
||||||
|
|
||||||
input_f = 'test'
|
input_f = 'input'
|
||||||
|
|
||||||
part = 1
|
part = 2
|
||||||
#########################################
|
#########################################
|
||||||
# #
|
# #
|
||||||
# Part 1 #
|
# Part 1 #
|
||||||
# #
|
# #
|
||||||
#########################################
|
#########################################
|
||||||
|
|
||||||
|
if part == 1:
|
||||||
def findAntinodes(grid:list,pos:set,current_node:set):
|
def findAntinodes(grid:list,pos:set,current_node:set):
|
||||||
print('Found',current_node,'at',pos)
|
|
||||||
antinodes = []
|
antinodes = []
|
||||||
for row in range(pos[0],len(grid)):
|
for row in range(pos[0],len(grid)):
|
||||||
for col in range(0,len(grid[1])):
|
for col in range(0,len(grid[1])):
|
||||||
print(row,col)
|
|
||||||
|
|
||||||
if get_value_in_direction(grid,(row,col)) == current_node and (row,col) != pos:
|
if get_value_in_direction(grid,(row,col)) == current_node and (row,col) != pos:
|
||||||
print('Matched with',(row,col))
|
|
||||||
|
|
||||||
s = subTuples((row,col-1),pos)
|
dist = subTuples((row,col),pos)
|
||||||
a = addTuples(s,(row,col+1))
|
add = addTuples(dist,(row,col))
|
||||||
if grid_valid(s[0],s[1],grid):
|
sub = subTuples(pos,dist)
|
||||||
print('Antinode at',s)
|
if grid_valid(sub[0],sub[1],grid):
|
||||||
antinodes.append(s)
|
antinodes.append(sub)
|
||||||
if grid_valid(a[0],a[1],grid):
|
if grid_valid(add[0],add[1],grid):
|
||||||
print('Antinode at',a)
|
antinodes.append(add)
|
||||||
antinodes.append(a)
|
|
||||||
|
|
||||||
return antinodes
|
return antinodes
|
||||||
|
|
||||||
if part == 1:
|
|
||||||
grid = toGrid(input_f)
|
grid = toGrid(input_f)
|
||||||
|
|
||||||
nprint(grid)
|
|
||||||
|
|
||||||
size = (len(grid),len(grid[0]))
|
size = (len(grid),len(grid[0]))
|
||||||
antinodes = []
|
antinodes = []
|
||||||
for row in range(0,size[0]):
|
for row in range(0,size[0]):
|
||||||
@ -47,14 +41,7 @@ if part == 1:
|
|||||||
current_node = get_value_in_direction(grid,(row,col))
|
current_node = get_value_in_direction(grid,(row,col))
|
||||||
if current_node != '.':
|
if current_node != '.':
|
||||||
antinodes += findAntinodes(grid,(row,col),current_node)
|
antinodes += findAntinodes(grid,(row,col),current_node)
|
||||||
print(antinodes)
|
print(len(set(antinodes)))
|
||||||
for idx, i in enumerate(grid):
|
|
||||||
for jdx, j in enumerate(i):
|
|
||||||
if (idx, jdx) in antinodes:
|
|
||||||
print('#', end=' ') # Print sign
|
|
||||||
else:
|
|
||||||
print(grid[idx][jdx], end=' ') # Regular grid element
|
|
||||||
print()
|
|
||||||
|
|
||||||
|
|
||||||
#########################################
|
#########################################
|
||||||
@ -63,6 +50,37 @@ if part == 1:
|
|||||||
# #
|
# #
|
||||||
#########################################
|
#########################################
|
||||||
if part == 2:
|
if part == 2:
|
||||||
exit()
|
def findAntinodes(grid:list,pos:set,current_node:set):
|
||||||
|
antinodes = []
|
||||||
|
for row in range(0,len(grid)):
|
||||||
|
for col in range(0,len(grid[1])):
|
||||||
|
|
||||||
|
if get_value_in_direction(grid,(row,col)) == current_node and (row,col) != pos:
|
||||||
|
|
||||||
|
dist = subTuples((row,col),pos)
|
||||||
|
add = pos
|
||||||
|
sub = pos
|
||||||
|
while grid_valid(add[0],add[1],grid):
|
||||||
|
add = addTuples(dist,add)
|
||||||
|
if grid_valid(add[0],add[1],grid):
|
||||||
|
antinodes.append(add)
|
||||||
|
|
||||||
|
while grid_valid(sub[0],sub[1],grid):
|
||||||
|
sub = subTuples(sub,dist)
|
||||||
|
if grid_valid(sub[0],sub[1],grid):
|
||||||
|
antinodes.append(sub)
|
||||||
|
|
||||||
|
return antinodes
|
||||||
|
|
||||||
|
grid = toGrid(input_f)
|
||||||
|
|
||||||
|
size = (len(grid),len(grid[0]))
|
||||||
|
antinodes = []
|
||||||
|
for row in range(0,size[0]):
|
||||||
|
for col in range(0,size[1]):
|
||||||
|
current_node = get_value_in_direction(grid,(row,col))
|
||||||
|
if current_node != '.':
|
||||||
|
antinodes += findAntinodes(grid,(row,col),current_node)
|
||||||
|
print(len(set(antinodes)))
|
||||||
|
|
||||||
print("--- %s seconds ---" % (time.time() - start_time))
|
print("--- %s seconds ---" % (time.time() - start_time))
|
Loading…
Reference in New Issue
Block a user