Add solution to problem 4

This commit is contained in:
2025-12-06 10:23:09 -05:00
parent b48372cdb8
commit d76a694bb3
6 changed files with 306 additions and 5 deletions

71
Problem4_1.py Normal file
View File

@@ -0,0 +1,71 @@
def checkRolls(x: int, y: int) :
rolls = 0
#!Check row above
if y > 0 :
#Check above left
if x > 0 and inputGrid[y - 1][x - 1] == "@" :
rolls += 1
#Check directly above
if inputGrid[y - 1][x] == "@" :
rolls += 1
#Check above right
if x < len(inputGrid[y - 1]) - 1 and inputGrid[y - 1][x + 1] == "@" :
rolls += 1
#!Check same row
#Check left
if x > 0 and inputGrid[y][x - 1] == "@" :
rolls += 1
#Check right
if x < len(inputGrid[y]) - 1 and inputGrid[y][x + 1] == "@":
rolls += 1
#!Check row below
if y < len(inputGrid) - 1 :
#Check below left
if x > 0 and inputGrid[y + 1][x - 1] == "@" :
rolls += 1
#Check directly below
if inputGrid[y + 1][x] == "@" :
rolls += 1
#Check below right
if x < len(inputGrid[y]) - 1 and inputGrid[y + 1][x + 1] == "@" :
rolls += 1
return rolls
testInput = [
"..@@.@@@@.",
"@@@.@.@.@@",
"@@@@@.@.@@",
"@.@@@@..@.",
"@@.@@@@.@@",
".@@@@@@@.@",
".@.@.@.@@@",
"@.@@@.@@@@",
".@@@@@@@@.",
"@.@.@@@.@."
]
def readFile() :
ary = []
with open("files/Problem4.txt", "r") as file :
for line in file :
ary.append(line.replace("\n", ""))
return ary
#inputGrid = testInput
inputGrid = readFile()
accessibleRoles = 0
x = 0
y = 0
for y in range(len(inputGrid)) :
for x in range(len(inputGrid[y])) :
if inputGrid[y][x] == "@" :
rollsAround = checkRolls(x, y)
#print(f"roll at ({x}, {y}) with {rollsAround} rolls around")
if rollsAround < 4 :
accessibleRoles += 1
#print(f"Accessible roll at ({x}, {y}) with {rollsAround} rolls around")
print(f"Total accessible roles = {accessibleRoles}")
#Total accessible roles = 1445

95
Problem4_2.py Normal file
View File

@@ -0,0 +1,95 @@
def checkRolls(x: int, y: int) :
rolls = 0
#!Check row above
if y > 0 :
#Check above left
if x > 0 and inputGrid[y - 1][x - 1] == "@" :
rolls += 1
#Check directly above
if inputGrid[y - 1][x] == "@" :
rolls += 1
#Check above right
if x < len(inputGrid[y - 1]) - 1 and inputGrid[y - 1][x + 1] == "@" :
rolls += 1
#!Check same row
#Check left
if x > 0 and inputGrid[y][x - 1] == "@" :
rolls += 1
#Check right
if x < len(inputGrid[y]) - 1 and inputGrid[y][x + 1] == "@":
rolls += 1
#!Check row below
if y < len(inputGrid) - 1 :
#Check below left
if x > 0 and inputGrid[y + 1][x - 1] == "@" :
rolls += 1
#Check directly below
if inputGrid[y + 1][x] == "@" :
rolls += 1
#Check below right
if x < len(inputGrid[y]) - 1 and inputGrid[y + 1][x + 1] == "@" :
rolls += 1
return rolls
testInput = [
"..@@.@@@@.",
"@@@.@.@.@@",
"@@@@@.@.@@",
"@.@@@@..@.",
"@@.@@@@.@@",
".@@@@@@@.@",
".@.@.@.@@@",
"@.@@@.@@@@",
".@@@@@@@@.",
"@.@.@@@.@."
]
def readFile() :
ary = []
with open("files/Problem4.txt", "r") as file :
for line in file :
ary.append(line.replace("\n", ""))
return ary
def printGrid() :
for line in inputGrid :
print(line)
print("")
def clearGrid() :
for y in range(len(inputGrid)) :
newLine = inputGrid[y]
newLine = newLine.replace("x", ".")
inputGrid[y] = newLine
#inputGrid = testInput
inputGrid = readFile()
removableRoles = 0
x = 0
y = 0
rollLocations = []
#If accessible roles are found, remove them from the grid and begin again until no more are found
while True :
#printGrid()
#clearGrid()
for y in range(len(inputGrid)) :
for x in range(len(inputGrid[y])) :
if inputGrid[y][x] == "@" :
rollsAround = checkRolls(x, y)
#print(f"roll at ({x}, {y}) with {rollsAround} rolls around")
if rollsAround < 4 :
removableRoles += 1
#Save X,Y of accessible rolls
rollLocations.append((x, y))
#print(f"Accessible roll at ({x}, {y}) with {rollsAround} rolls around")
if len(rollLocations) == 0 :
break
for loc in rollLocations :
inputGrid[loc[1]] = inputGrid[loc[1]][:loc[0]] + "x" + inputGrid[loc[1]][loc[0] + 1:]
rollLocations = []
#printGrid()
print(f"Total removable roles = {removableRoles}")
#Too low = 8316

View File

@@ -42,8 +42,7 @@
5886868774555746344643885473376676884344675734948355455843433537685787785745645786674574548985575575
3547866352236644664573227563164454434563474557214356536355366554436444344465743441774145553622545244
2454542445455454335434451454454434434474452533324232524334341443363345334445444333733546444434534343
1232131114123623332241132222224225224222232263211324231213315372222524322142233412121735172623122225
9267262423528474362245832533348735374544892892233421337236372142334223347313276322562331634332122245
12321311141236233322411322222242252242222322632113242312133153722225243221422334121217351726231222259267262423528474362245832533348735374544892892233421337236372142334223347313276322562331634332122245
2223175344331222122123222233314252237251132723333321213232122532223222624333233312323452332222123222
2313333333355313653336333333333332633333353253333336633333433234533823365342433553333233314344453153
5323433341124332233332513233244283823243445365333343562232342421323322443533255323422433243333441213

136
files/Problem4.txt Normal file
View File

@@ -0,0 +1,136 @@
@@@@..@@@.@.@.@@@@...@@@.@.@@@@.@@@@@@.@@..@@@@@...@@@@@.@@.@...@@..@.@@@@@@@@@@.@@@...@@@@@@@@@@.@@@@@@@.@@.@@@.@@@@@@.@..@@@.@@@@@@@@@
.@.@@@@@@@@@@@..@@.@.@@@@.@.@.@@.@.@@@..@@@..@....@@@@@@.@@..@@@@@@...@@@...@@@..@@.@@@.@@@@.@@@@...@@.@@.@@....@@@@@@.@@.@@@.@@@.@.@@@.
@@@@@@@@..@.@..@...@@@@@.@.....@.@@@@@.@@@@@@@@@@@.@.@@@@@....@.@.@.@.@..@@@@@.@..@@.@.@@@.@@@.@.@@.@@.@@@..@....@@@@@@@@@@..@@@...@@@@@
@.@@.@@@@@.@@@..@.....@@.@@..@@..@.@@.@@@@@@@.@@@.@..@@@.@.@@@@.@@..@@@@@@@@.@@@@@@@@@@@@@..@.@@.@.@@@@.@@@@@@.@@@@@.@.@@@@@@@@...@.....
...@.@...@.@@@....@@@@.@.@@@@@@@.@.@.@.@@.@@...@@@@@@...@....@@...@.@@..@@@@@@@@.@@@@.@.@@.@@.@.........@.......@@@@.@@.@.@@.@@@.@@@@...
@@@@..@@.@..@@@..@@..@.@@......@@@@@@@@.@@.@..@@@@@..@.@@@.@@@.@@@@.@@.@.@@@.@@.@.@..@@@@@.@.@@..@.@.@@@@@@.@@.@@@.@@@@@@@@@@...........
..@@@....@.@.@@@@@@.@@@@@...@.@.@@@.....@@@@.@@@@@@@@@.@@@@@.@@@.@.@@@@@..@.@@..@@.@..@@.@@@@..@.@@.@.@@@.@@@..@@.@.@@@..@..@....@.@@@.@
...@..@@@@@..@@@@.@@.@..@.@@.@..@@@.@.@.@.@..@@@.@.@@@@@@.@@@@.@@@.@@.@@@@@@@@@@@@@.@.@@@..@@@.@...@.@....@@@@.@@@@@@@@@.@.@@@@...@.@@@@
.@@..@.@@...@.@.@..@@@.@@.@@@@.@.@.@@..@..@@...@.@@@..@.@@..@@@.@@..@@@..@@@@@.@@.@@.@.@@.@.@@@..@@@@@@@@@@@@@@.@@.@..@.@.@@@.@@@..@@.@.
@@@..@@@@@.@@.@...@@@@.@.@@.@@@.@.@@@@@.@.@@.@@@@@@@.@@@@@@@..@@@@.@...@@@@@@.@@@@@@@.@@@@@@@@@@.@@..@@.@@.....@@@@@@@.@@@..@@..@@.@@@@@
.@@@@.@@.@.@@@@@..@.@@@.@@@@..@@..@@@..@.@@@@@.@@@@@@.@@@..@@@..@.@..@@.@@@.@@@.@@.@@.@.@..@@.@@@@...@@@@@@@.@@@@..@.@.@...@@@...@..@@.@
.@.@..@@..@@@@@@...@.@@@@.@.@.@@@.@@....@@@@.@@@.@@@@@.@.@@@@@..@@@.@@.@@.@@@..@.@@@....@@@@.@@.@@@@@.@@@@@@@@@@.@@@.@.@@.@@@@..@@@@@@@@
@.@.@@.@....@...@@@...@@@@@@@@@..@@.@@.@.@@@@@@@@@@.@.@.@@..@@.@@@@.@.@@@..@.@@@@@.@@@@@@.@@@...@@.@@@@@@@@....@@..@@@@@@@.@@@@.@@@@....
@@.@..@@.@@@@..@@@@..@.@@..@@.@@@...@.@.@@@.@@@@@.@.@.@.@@.@.@@@@.@@@@@@@@..@@..@@...@@.@.@@@.@@@@.@@..@.@@.@@.@@@..@@@@@@@@@@@@..@@.@@.
@@@@@@.@.@.@.@@.@.@@.@@@@..@@.@@@.@@@.@@.@@@@.@.@@@@@@.@@.@@@..@@@.@@@@@@@@@@@.@..@.@@.@@.@@@....@@.@@@.@.@.@@@@@.@.@..@..@@@.@.@@.@@.@@
.@@..@@@@@@.@@.@.@@....@@...@.@..@.@@@@@@@@@.@@@.@@@@@@@@@..@@@@@@@@@@@@@.@@.@....@@@@.@@@@@@.@@.@.@.@.@@@.@.@@@@@@.@@.@@@.@@@.@@@@@..@@
.@.@.@@@..@@...@.@@..@@.@..@@@@@..@@@....@@@.@@@@@@.@@@.@..@...@.@@.@@@@@.@@@@@@@@@@@@@.@@.@@@..@@@@@@..@@@@..@.@..@..@.@@@@.@.@@@@@@@@@
@@@.@@..@@@@@.@@@@@..@@@.@@@.@@.@@..@..@@@@@@@@.@..@@..@.@.@@@@@@@.@.@..@.@.@@@@.@@.@.@@@.@@@@@@.@@@@..@@....@..@@@.@@.@.@@.@@.@@@@@@@.@
@.@@@@@@.@@@.@@@.@.....@..@@@.@@.@@...@....@@@.@@.@.@@.@@..@.@@.@@...@@..@@.@.@@..@..@@@@...@..@@@@@.@@..@...@.@.@@@..@@@@@@@@@@@.@..@.@
@..@@@@.@@@@.@..@@@..@.@@@@.@@..@..@@@@@.@@@@.@@......@@.@@@@@@@@.@@@.@@.@.@@..@@@...@...@..@@.@.@@.@@.@..@.@@@@@..@@@.@.@@@.@@@@@@@@@@@
@@.@.@@.@@.@.@.@@.@...@@@@......@..@.@@.@.@@.@..@@@.@@@.@..@@.@@@.@.@.@@..@@@...@@@@@@.@.@.@.@@@.@@.@..@@....@@@@@.@@@@.@@@@@.@@@@@@@@@@
@@..@@@@@@@@..@@@...@.@@.@@@..@@@..@@@@.@@@.@.@.@@.@@@@@@@.@@@.@@.@@@@....@@.@@@.@@@..@.@@@@@@.@@@@@..@@@@@@@.@..@@@@@@.@@.@@..@.@...@@.
.@....@..@@@@.@.@.@@.@@.@@@@.@.@@@@.@@@@@@@@@@@@..@.@@...@@@@@....@...@@@@@@.@@..@.@..@@.@@.@.@.@@@.@@@.@@..@@@.@@@@@.@@@@.@.@.@..@@@@@.
@@@.@..@..@...@@@.@..@.@....@@@@@.@@..@@.@.@.@..@.@@.@@@..@@@.@@@@@@@@@@.@@@@@@..@@@@....@.@@@@@@@@@@@@@..@@@@.@@@@@@@.@@@@@@.@@@@@@@@.@
@@@.@@@@@.@@@@@..@@@..@.@.@.@@@.@.@@@@@@..@@.@@@@@.@@@..@@.@.@@@.@@@..@@@..@@@.@@@..@@@..@@.@@@.@@.@.@@@@..@.@@..@@.@@@@..@@.@@@@@..@..@
..@.@.@@.@@.@.@@..@@@..@@@@@.@@@.@@@@@.....@.@@@..@.@@@@@@..@@@@@...@@@..@.@.@@@@@@..@..@@.@@@@.@..@.@@@.@.@@@@@@.@@@@..@@@@@@@@@@@@@@.@
@@@@@..@@@@@.@@..@.@.@.@@.@@@@.@.@@...@@.@..@..@@.@@@@..@@.@@@@@.@@.@@@@@..@@@@@@.@.@.@@@@.@.@@@..@@@@@@..@.@@.@@@..@@@@@@@@@@..@@@@.@..
@@@@.@.@.@@@.@@.@.@@@@@@..@@.@@@@.@@@.@@@@..@@@@@.@@...@.@@.@.@..@@@.@@.@@@..@..@@@.@.@.@.@@..@.@.@@.....@...@@.@@@.@@@@@..@@@@@@.@@@@@.
@@..@@.@@.@.@@.@@@@@@@@..@@..@@@@@@@.@...@@..@@..@@@@.@...@@@@@@@.@.@@@@@@@@@@@.@@..@.@@@.@@@@@@@@@@....@@.@....@.@@@.@@.@..@@@@@@.@@...
@..@..@.@.@@@...@.@@.@@.@@@.@@@@...@..@@@.@@.@@@@.@@.@@.@@@@.@.@@@@@@@@.@@..@@...@.@@@@@@@...@.@@@@@@.@@..@..@@...@@@@....@@@@.@@@@@.@@.
@@@.@@@@@@@@@@@..@.@.@..@@.@@..@..@@@.@..@.@....@@@..@@.@@.@@.@@@@@.@@.@@@@.@@@@.@@@@@@@@@.@@@.@.@@.@.@@.@.@@.@@..@.@@@.@.@.@.@..@@.@@@@
@.@@@@.@@@.@@@@@.@@.@@@...@@@..@@@.@@...@..@....@@@..@@@..@@@.@@@@.@@....@...@@..@@@.@.@@@..@@.@.@....@.@@@@@@@...@@@@@@@@....@@@@@@@.@@
@@@@@.@@@..@.@@.@..@@@@.@@@@.@@@.@@..@@...@.@@.@@@.@@@@@.@.@@@..@@..@@@@@.@....@@@.@.@@@..@....@..@@@@...@@..@@@.@.@@@.@@@@@@@.@...@@@..
.@@.@@....@@@@..@@@.@@@@@.@@@..@@@@.@@...@..@.@@@@@@@@@@@@@@@..@.@@@@@@@.@...@@@.@..@@.@.@@@..@..@@..@@@@@..@@@@..@.@@@@@@..@@@@@@@@.@..
@@.@@.@@@.@@@@.@@@@@..@.@.@.@@@@@@@@....@@@.@@@@@@.@@.@@@@....@@.@@..@@@@..@.@@.@@@@@@@.@@@@@@...@@.@.@@@..@@@@@.@.@..@...@..@.@@@..@.@.
.@@@@@@.@@@@@..@@@@@@.@@@@..@.@@.@@@.@@@@@@.@.@@@.@..@.@@@.@@@@@.@@@@@.@@@@..@@@@@@.@@@@@@@@.@@@.@...@..@@@..@@@...@..@@@.@@@@@@@@@.@@@@
...@@@@.@@@.@.@@@@@@..@...@.@..@@@@@@@@@@@...@.@@.@@@@.@..@@@..@@@@...@@@@@@@@@.@@@@.@@@@@@@.@@@@@@@@@@@@@@@..@@@..@@@.@@.@..@@@@.@@@@.@
@..@@@@.@.@..@@@....@..@@@.@@@@@@@.@.@@..@@.@@@.@@@@.@@@@@@.@.@@.@.@.@@@.@@@@.@@@@.@@@@@@@.@@.@@@@@..@@@@@@.@@@@@.@..@@.@..@@.@..@@.@...
@@.@.@@@..@@@.@@.@.@@@.@..@@@@@@.@.@@@.@@@@@@.@@.@.@@..@.@@@@@@@@@.@..@@@.@@@@@@..@@@@...@..@.@@@.@..@@@..@..@@@@.@@.@.@@@@@.@.@@@@...@@
@@...@@...@.@@..@@@@@@@.@.@@@..@@.@@@.@@@@@@.@@.@@@@@@..@..@@.@@@@@.@@@@@.@@@@@...@@@@.@...@..@@@..@@@@@@@@@@@@@@@.@@.@.@@@@..@@.@@@@@..
@@@@.@@@@@@.@@..@@...@@@@@.@.@....@.@@@@...@..@..@@@@.@@.@@.@.@.@@.@@@.@@.@@@.@@.@.@@@.@...@@@..@.@@@@...@@....@@@@@..@...@@....@@.@@.@@
@@@..@@@@@@@..@.@....@@@.@@@@@.@.@...@@.....@@@..@@@.@.@@..@@..@@.@@..@@@@.@@@@.@@@@@.@@@@@.@..@@.@@@@@@.@.@.@.@@@@.@@@.@.@@..@.@@@@@.@@
.@.@@@@@@@@@@@@@@@@@@.@@@@@@@..@@@...@...@.@@.@..@@@.@.@@@.@@.@@.@@@@@@@@@.@@@@@....@@.@@.@@@@.@@@@..@@@@.@@@@@.@.@.@..@..@@@.....@@@@@@
@@@@@@@@@.@@@.@@@.@.@.@@..@@@@@@@@...@@@@@@...@@..@@.@@@@@...@.@..@@@@.@@@..@.@@..@@@.@..@.@@.@@@@@@@@@..@.@.@@@@@@@@@@@@.@.@.@@.....@@@
@@@@@@..@@..@@@.@.@@@@@@@@...@..@@..@.@@@@.@@@..@...@@@@@@@.@@@@@.@@@.@@@@@@@.@@@.@@@.@@@@@@@.@.@@@@@..@.@@@@@@@.@@@@....@@.@@@@.@@.....
..@@@@@@@.@@@...@..@@@@@@@@.@@..@@@.@@.@@@@@.@@@.@@@.@@@@.@@.@@.@@..@@@@@@..@.@@@..@@@...@...@...@@..@@....@.@@@@@@.@.@@@@@@@.@....@@@@@
@@@@.@@.@.@@@@....@@@@.@.@.@@@@@.@.@@...@.@...@@@@..@.@@@@@@@.@@..@@.@@@@@@@@.@@@@.@.@@.@.@@@@@.@@@@@@..@..@@@..@@@.@@@@.@.@.@@@.@@@..@.
..@.@@.@@@@@@@@@..@@.@@..@@@@..@.@@.@@.@@@.@.@@@..@@@.@.@@@.@@@.@@@..@...@..@@.@@@@@@.@@@@@.@.@.@@@@@@@@@@@@.@@@@@@@.@@.@@@.@@@@.@@@@@@@
@@.@@@@.@@@@..@..@@..@@.@@@@@@.@@@...@@@@@.@@.@@.@.@@@@@.@@@.@@@@@@.@@@@...@@@.@..@.@@..@@@@@.@@@@..@@@@.@@@.@@.@@@@.@..@.@@@@@.@@@@@@@@
@..@..@@@@@@@@@..@@.@@@@@.@@.@.@.@.@@@@.@@.@@.@@@@.@@@....@.@@.@@..@.@@@@@@..@@@@...@.@..@...@@@@.@@@@@@@.@@@@@@@@@@@@@...@@@..@@..@.@@@
@@.@..@@@.@..@.@.@@..@@@.@@@@@@...@@@@@@@.@@@@@..@@.@...@@.@..@@@@.@.@@@@.@.@@@@@..@@@@@@@.@..@.@.@@@@@.@@@@.@@..@.@.@@@.@@@@...@.@@@.@@
@@..@@...@.@@@..@@@.@@@@..@@@..@@.....@..@@@@@@..@@.@@@@@@@@@@@@@@@@@@@.@.@@@@..@@.@@@@.@@@@@@@.@@@@@.@.@@@@@..@@@@@@@.@@@.@...@@@@@@.@@
@...@@..@@@@@.@@.@@@@@@@@@@@@.@@@..@.@.@@@@@@@@.@@@@@.@.@@@@.@@@@@.@@.@@.@@...@.@....@.@@...@@@...@@@..@....@.@@@.@@..@@@@....@..@@@@.@.
@.@@.@@@@@.@@..@.@@@@@@.@.@...@.@..@@@..@.@@@...@@@.@.@....@.@.@..@@@@@@@@@@@@@@.@@@@.@@@@@@.@@.@.@@@@.@@@@.@@@@@@@.@@@..@...@@.@..@.@@@
@.@@@.@.@@@@@.@..@.@@@@@@@.@@@@@.@@@@@.@@@.@@.@@..@@@@@@@@@@@@..@@@@.@@@@@.@@@@.@@@@@.@@@..@@@.@@@@@@@..@..@...@@....@..@.@..@....@@.@@@
..@@@@@@.@..@@@@@@.@@@@@@@@@@....@..@@.@@@@@.@@.@.@@@@.@...@@.@..@.@@@@.@.@@@@@@...@...@@@@@..@.@@.@@@@....@@@.@.@@.@@....@@@..@@@.@@@.@
@@@@..@.@.@@..@@@.@.@.@.@.@@@.@.@.@@@......@@@.@@.@@@@@@@.@@.@..@@@@@..@@@@@@@..@@@@@@@.@@@@.@@@.@@@@@.@.@@...@@@.@@@@@.@@@@.@..@.@@@.@.
@@.@@@@.@@.@@@@@@.@...@@@@.@......@@@.....@.@@.@@@..@@.@@..@@@.@...@@.@.@.@@@@.@@@@@@@@.@@.@@@.@..@@@......@.@@..@@..@@..@@.@.@.@@@@@@@.
@@@@.@..@@@.@@@@.@@@@..@@@...@..@..@@@.@...@@@@@@@.@@@..@.@@..@@@@..@@...@..@..@@.@.@@@@@@@@@.@.@..@@.@@@.@@..@@@@@@@@@.@@@@.@..@@@.@@.@
@@.@@@.@.@@@@@@@@.@@.@@@@@.@@@@@@@@...@...@.@@@@...@@@@@..@@..@@@.@@@@@@@@@.@.@@@.@..@.@@@@@@@@@..@@..@.@..@.@@@.@.@@@....@@@@...@..@...
@..@@@@@@@..@@.@...@@.@@@.@.@@@..@@@@@@.@@@@..@@.@...@..@..@..@.@@@@@@@@@@@@@@@..@@@@@.@.@.@.@@@@@@@@@@@@..@@.@@@..@@@.@@.@@.@@.@.@@@@@.
@.@@@.@@.@@.@@.@@@@@..@.@..@..@@@@@@@@..@@...@@@@@@@@..@@@@@@.@@@.@.@@...@.@@@@@@@@@@@@@.@@...@@.@@@@@@@.....@.@@..@@@@@@...@.@.@..@@@@@
@.@.@..@@@@@..@.@@.@@.@@@@@@@@.@@@@@.@@@.@@...@@..@@...@.@.@.@@@..@.@.@@@@@.@@@@@.@..@@.@.@...@.@@@.@@@@...@@@.@@@.@@@@....@@@@.@.@.@@@@
@..@.@@@..@@@.@.@@@@.@.@@.@@@.......@@@.@@@.@..@@@@@@@@@@.@@.@@@...@@..@@@@@@@@@@.@@@@@@@@@.@.@@.@.@@@@@@@@.@@@@..@@@@@@.@@@@..@@@@@@.@@
@@@.@@..@@.@.@.@@@@@@@@@@.@.@..@.....@.@.@@@.@@@@@@..@@@..@.@@@.@..@..@@..@@....@@@@@.@@@@.@@..@.@@.@@.@@@@.@@@@@@@.@.@@..@@@@@@@.@@.@@@
@...@..@@..@@@@@.@@@.@@@@.@.....@@....@.@@@.@.@.@.@..@@@..@@@@@.@..@.@.@@@@@@...@@@@@.@@@@..@@@..@.@@..@...@.@@.@@..@@@.@@@@.@@@.@..@@.@
@@.@@@.@@.@@..@@@..@@@@@@.@.@@@.@@.@@@@@....@..@@.@@.@@.@.@.@@.@@@@..@@@@.@@@@@@@@@.@@@@@.....@@.@@...@@@.@.@@.@@.@..@..@..@@@@.@@@@@.@@
@@.@@@@.@.@..@@.@@@.@....@@@@.@@..@@@@@@@@..@@@..@@@@.@@@@...@@@@.@@@.@..@@.@@@..@@.@@...@@@..@@@@@.@@@....@.@@@@@..@@@@@@@.@@..@..@@@@.
@@@@.@@@.@.@@.@.@@.@@@@.@.@@@@..@@@...@.@@@@..@@.@....@@@..@@...@@.@@..@.@..@.@@..@..@@@@@@.@.@@@@@@@@@@@.@@@@.@.@@.@.@@@.@@@.@@@.@@.@@@
.@..@@@....@...@.@.@@.@@.@.@@@...@.@@@.@@@..@@@@@@@.@@.@.@..@@...@.@..@@@.@@@@@@@@@.@.@@@@@@..@@@@@.@@@....@.@@@@@@@@@@@@.@@@@@.....@.@@
..@.@.@@@.@@.@@@.@.@@@@@.@@@@..@@@..@@.@@@..@@@@..@@@@@.@@@@@.@..@.@.@@@@@.@@@..@...@@@@..@@..@@@@...@@@..@@@@.@@..@@..@@@@....@@@@.@@.@
@@@.@@@..@@@@@.@@@.....@@@....@@..@@@@@@.@@@@@@.@@@.@@.@.@@@@@@.@.@@@@@@@@@@.@@@@@@@.@.@@@@..@@@@....@@@@@......@@@.@@.@@@@@@@.@@.@@.@@@
@.@@@...@@@.@@@..@@@.@@@...@.@.@..@@@.@.@@.@@@@.@...@@.@@@@.@@@..@.@.@.@@@..@@@.@@@.@@@@@.@.@@@..@@.@@....@@..@@@.@.@@@@..@@@.@.@@....@@
@@.@.@@@@@.@.@.....@@.@...@@.@.@@.@@@....@@..@@@@@..@@...@@.@@...@@@@.@@..@@@@@@@...@...@.@@..@...@@@@@....@@@@@@@@@@.@@@@@@@.@@@@@..@@@
.@@@@@.@@.@@..@@@@@.@@@@@@@@@@@@@@@....@@@.@..@@.@@.@@.@...@..@@.@@@@@@.@@@@.@@@@@@....@@.@@.@@.@@.....@.@@@@..@@@@@@@@@...@@@@@@@@.@@@@
.@@@@@@@@..@@@@.@@.@@@...@@.@@@...@.@..@...@@@@@.@@.@@@..@.@@@@@@@.@.@@@@.@@.@..@...@@.@@@@@..@.@@.@@@.@@...@@@@@..@.....@@..@@.@@@@@..@
@@.@@@@.@...@..@@@@@@@.@@@..@....@@@@@..@...@.@@@@@@@@...@@..@.@@@.@@@@.@.@@@.@@..@@.@@@.@@@.@..@@@.@@@@@@@....@.@@@..@@@@.@@@@@@@@.@@@@
.@@@@@@@@@@@..@@@..@@@.@@@@@.@.@..@@@.@@@@@@.@@@@@.@@@@@@..@@@@@.@@@@@@.@@@.@..@@@@@@.@@..@@@@@.@.@@@@.@@.@@..@.@@@..@@@.@@@@.@@@..@...@
@@@@@@@@@...@.@@@@@@.@.@.@@@@@@@@.@.@@@.@.@.@@@.@@@@..@@.@@@.@.@@..@@.@@..@@.@@@@@@.@@.@.@.@@.@@.@.@@@@@@@.@@@@@@@......@@..@.@.@@@..@..
.@@..@@@..@@@@.@@.@..@.@.@@@.@@@@@@@@@.@@@@..@@@.@@@..@.@@@.@@@....@@@@@@.@@.@.@@@@@@@.@@.@..@@@@@@@.@.@.@..@@.@.@@.@...@...@@@..@@.@@.@
...@@@..@...@@@..@@..@@.@.@@@@@@@@@@.@@@@@@.@@@.@...@@.@..@.@..@@@@.@.@@@...@@@@.@..@@@@@@.@@@..@..@@@@.@@@@@@@@@@@@@.@@.@@..@@@@@...@@@
@@@@@.@..@@@@.@@.@@@..@@..@.@@.@..@@@@@.@@.@@@..@.@@@.@@@@@@@@.@.@..@.@...@.@@@@.@.@...@@.@@.@@@@@@..@.@@..@@@@@@.@...@@@@@@.@@@@..@...@
@@@.@.@@@.@.@..@@...@@@@@@@@@@@.@@@@..@@..@.@.@@...@..@@..@..@@@@@.@@.@@@..@.@@.@@@@@.@...@@.@.@.@..@@.@@..@...@...@@@.@@@..@.@@@..@@.@.
@@@@.@@@.@@...@.@@@@@.@@.@@@@@@@@@..@@@@..@.@@..@.@@@...@..@@@@@@.@@@@..@@@.@@.@..@@@@@.@@@@.@@@@.@@.@@@..@@@@..@@.@@@.@@...@..@@..@@@@.
@.@@@@..@@..@..@@.@..@@.@@.@@..@@@....@@.@.@..@.@@.@@@@@.@@@@@...@@@@.@@@@@.@@@@@.@..@.@@@@@.@...@..@.@@@@@@.@@@.@@...@@..@@@@...@.@.@..
@@..@@..@..@@@@.@@..@.@@@@@@..@..@.@.@@@@.@@@@.@..@@..@@@@@@@@@@@@@@@@@.@.@@@@@@@@.@.@@..@@@@..@@.@@@.@.@@.@@@@.@@@@@@@@.@@@@...@@.@@@.@
@....@......@@@@@@@.@@@.@@@@.@.@@.@.@@@@@@@..@@@@.@..@@....@@@@@@.@.@@.@@@@@@@..@@@@.@@@@.@@.@@@.@@.@..@..@@@@.@.@.@@@...@@@@@.@@@@@@@@@
@@@@.@@@@@@.@.@..@@.@..@@@@@@@@@@@.@.@...@.....@.@@@@@@..@.@@.@..@@@..@@@@@@@@....@@@@@@@@@@..@.@@@@@@.@@@@@.@@@@@@...@@@.@@.@@@...@@@@@
@@.@@.@.@.@.@.@@...@@.@@@@@@@@.@@@@@@@@@@@@..@.@@@@..@..@@@..@@.@@@@.@..@@@@@@@@@@@..@@@..@@@@@.@@.@@@@.@..@.@@@@@.@@.@@.@@@@.@@.@@@@.@.
.@....@.@@.@.@@@.@@@@@@@....@@@.@@@.@@.@.@.@@.@@.@.@.....@@@..@@.@..@@@.@@.@@..@@..@@....@@@@..@.@..@..@@@.@@...@.@@@.@@.@@.@..@@.@@@@@@
.@@.@.@@@@..@...@@@@@@.@@@@.@.@..@@@@.@..@@@@@@@@@@.@@@.@@@.@@.@@.@@.@.@@@..@.@@@@@@@@@@.@..@..@@@@@@..@.@@@@.@.@.@@.@@@@@@@@@.@@@.@@@.@
@@.@@@.@@@@..@@......@..@@@@.@@@@.@.@@@@@.@@.@.@@..@..@@@@@@.@@@.@@@@@..@@@@@.@@@.@@@.@..@@..@....@.@@@..@@@@@@.@.@@@@.@@@.@.@@@@.@..@..
.@@@@...@.@@@@@@@@@@@@@@.@.@.@@....@@@@@.@.@@@...@@@@@@@@.@..@..@@@@@@@@@@.@@@@@.@.@@@@..@@@.@@.@@@@.@@.@@...@..@.@@@@@.@.@@@.@@@.@@..@.
.@..@@@....@.@...@@..@..@@@@.@....@@@@.@@@@@@.@.@.@@.@@@@.@@.@.@@.@@@.@@.@@@.@@@@.@...@@.@@@@@@@@..@@@@@@@.@.@@@@.@@@@@@@@@..@@@.@@.@@@@
@..@@.@@@@@@@.@@@..@@@.@@@@.@@@@@@@@@@...@...@.@@@@@@@@@.....@@@..@....@@@..@@@@@.@..@@@.@..@..@@@..@.@@@.@.@@.@.@@..@@@@@.@.@.@@@@@@@..
@.@.@@@@@@@@@..@.@.@@@..@@@@@@@.@@@@.@@@@.@..@@@@@.@@.@@@@@@@@@.@@@..@@@@.@@.@.@.@@@@@@@@.@@@.@..@@@@@@..@@@.@.@..@@@@@@@@..@..@@@@.@@..
@.@@@@.@@@..@@...@@@......@@@..@.....@..@.@.@@@@@@@@@..@.@@@@@...@@@.@@@.@@@@@@.@@@@.@.@@@...@@.@.@@@@@@.@..@.@..@.@@@@.@@.@@.@@@@.@@@.@
.@....@.@@@@@@@.@@@@@@..@@.@@@..@@@.@@@@@.@...@@.@@@.@.@@@@@@@@@@@@@@.@@@@@@@..@@.@.@.@@@.@@@@@@@.@@@.@.@@@..@@@..@.@@@.@@@.@@.@.@.@@...
@@@@...@.@..@@.@.@@@@@..@..@@.@@...@@@@@@.@@.@@@@@@@.@@.@@@@@@@.@@@@.@@@@@.@@@@@.@@@.@.@@@...@@.@...@@@@@@@.@@..@.@@@.@.@...@@.@@.@..@@@
@@@@@@@@.@@.@@@@@@@.@@.@@..@@@.@@.@...@@@@.....@@.@.@@.@.@@@@.@@...@@@@@..@@@....@...@@.@.@.@.@@.@@.@@@@.@.@@.@.@@@@@@@.@@@@@..@@@.@@@..
@@@@@..@@@@@@@@@@.@@@@.@@.@....@...@@.@.@@..@.@@..@...@..@...@@..@@@@@@@@.@.@@.@.@@@@.@@@@.@@@..@@@@.@@@@.@@@@@@.@@.@@@@@@.@.@@@.@@@@..@
.@@@.@@.@.@@@.@@@..@@@.@@.@@@@.@@.@@@@.@@.@@@@@.@..@@@@@@@@.@@.@@....@@@@@@....@.@@@@@@@@@@.@@@@@@.@.@....@..@@.@.....@..@..@@@@@.@@.@@@
@@@.@@@@@..@.@@.@@@.@.@@@@.@@@...@..@@..@...@@@.@..@.@@.@..@@@@.@@@@@@.@.@@.@.@@@@@.@.@@@@@@.@@@@@@@@.@@.@.@@@@@@@.@@..@@@@.@@@...@@@@@@
.@@@@@@@.@.@@@@.....@.@@@@@..@@@@@@.@@@@@.@@@@@@..@@.@@@.@@@.@@@@@.....@@@.@@@@.@@.@.@@.@@.@......@@@@@.@@.@@.@..@@.@..@@.@@@@.@.@.....@
.@@@@@@.@@@.@@@@@@@....@@..@@@.@.@..@.@@.@.@@..@.@@.@...@@...@.@.@..@.@@@@.@@.@.@.@.@.@....@@..@@.@.@.@.@...@@.@@@@@@.@.@@.@.@@.@@.@@.@@
@@@@@.@@@@@.@.@.@.@@@@.@@.@.@...@@..@@@@@@@@..@@.@@..@.@@@.@@@@@@....@@...@@@@@@@..@..@@@....@@@@@@.@@.@.@@..@@@.@@.@@@@@.....@.@.@@..@.
.@@@@@.@@..@.@..@@@.@@.@@@.@@@@@@@@@..@@@@.@.@..@.@@.@@.@@.@@.@@@@.@@@@...@@.@@.@..@.@@@@..@..@.@@@@.@@..@@.@@..@@..@@@@...@..@@...@@@..
@....@@@..@@..@@.@@@@..@@@@@.@.@@@.@@@@@.@.@.@.@..@@@..@@..@@.@@@.@@@@@.@@..@@......@@.@@.@@@@.@@.@@@.@@..@@@.@@.@@@@@@@@@@.@..@@...@@..
@@@.@.@...@..@.@@@@@@@.@@....@@....@@@..@.@..@.@.@@@@@..@@@.@@@@..@@@@@@@.@@..@@..@@@...@@@@.@@.@@.@.@@..@@@@.@@@.@@@..@@@@.@@@@@@....@.
.@.@@.@@..@@...@@@@@.@.@@..@@@...@.@@@.@@@@.@..@..@@..@.@.@.@@@...@@@@@@@@@.@@@@@@@@@@@@...@@@@@@....@.@.@.@.@@@@.@@@.@@@@@@@.@.@@@@@.@.
@@@@@@.@.@...@@@..@@@@.@@@@@.@..@@@@@@@..@@@@.@@@.@@@@@.@@..@.@.@@@@@@@.@..@@@@.@..@@@@@.@@.@@....@@.@@.@@..@.@...@.@@...@@@...@.@@.@@@@
@.@@@@.@@@@@@.@@.@.@..@@@@..@@...@.@@.@@@..@@@@@.@@@.@@...@@...@.@@.@@@@..@@...@.@@..@.@@.@.@@@@@.@..@.@...@.@@@..@@@..@...@..@@.@.@.@.@
@@@@@.@@@@@@@@..@@@@.@.@.@.@@@@@@@..@@@.@@.@.@.@@@.@@..@@@@@@.@@@@@@@@@..@@@@@@.@@@@.@....@..@.@.@.@@@@.@@@@.@@@@@@..@.@@@@@.@@@@@@@@@@.
@..@..@..@@@@@..@@..@@@@.@@..@@@@@@@@.@..@@@@@@@.@..@@@...@@@..@@.@@@@@@@@....@.@@@@.@@@@.@@..@..@@..@.@@@..@@@@@@@.@@@@@@@@@@.@..@@..@@
@.@@.@.@@..@@@@@...@@.@@@@.@@@@@.@@@@@@@.@@.@@@.@..@@@.@.@....@@@@@@@@@.@.@@..@..@@@..@@@..@@....@@...@@.@@.@@@@....@.@@@.@@.@.@@.@.@@@@
@..@@@@.@@.@.@@@@@.@.@@.@@.@@@.@..@@@.@@@.@@..@@.@.@@..@@.@@..@.@...@.@@@@...@@.@@@.@@@.@@.@.@.@@..@@@.@.@.@@@@....@.@.@..@@.@@@@..@..@@
@@.@.@@@@@.@@@@...@@@@@@@.@@@@@.@@.@@@@@@..@@@@@.@@.@@@@@....@.@@@...@@@@.@..@..@@.@@.@@@@.@@@@.@@.@@@.@@.@@@@@@@.@.@@@@@.@@..@..@.@@@@.
.@.@@.@.@@@@@.@.@@.@@..@.@@..@@@.@@@@.@.@@@.@@.@.@@@@@....@@@@.@@@.@.@..@@...@..@....@@@..@@..@@@.@@..@@@@@@@@@@@@@@....@@@@@@@@.@.@.@@@
.@.@@@@@@@@@@@..@.@@@@@@@@.@.@...@@..@.@@..@@@@@@@@@.@@@@@@@@@..@@@..@..@@@@@@.@@@..@.@@...@@@...@@@@.@@..@@@@@@@@@@@@@@@@.@@@@.@@.@.@@.
.@@@...@@@@@..@.@@@@@@@@@..@.@.@@@@@@@.@@@.@..@@@..@@@@@@..@@@@@.@@@@@..@@@..@@@@@..@.@@@@.@@....@@@@@@@@@@.@.@@@@@.@@@@..@@@@.@@@@@.@@.
....@.@@.@@@...@.@@@..@@@..@@@@.@@@@@.@@@..@@@@..@@@@@.@@@..@@@.@@@@@@@...@@.@@@@@@.@....@.@@..@.@@.@@@.@@..@@.@.@@@@@..@...@@@.@@@.@...
.@@@..@.@@@@.@@@.@.@@@@.@...@@@@@@@@.@.@@@.@@@...@@@@.@@.@.@@@.@.@..@@.@@@@...@@@@.@@@@@@.....@@@..@.@.@@@@..@@@..@@@@.@@@@@.@...@@@..@@
@@....@.@@@@.@.@....@@.@....@@@..@@@@@@..@@@@@..@.@..@@@.@@@@@@@@.@@@.@..@...@@@@..@...@@.@@@.@@@.@.@@.@@@@@@@@.@@@.@.@@@.@.@@.@@@@..@@@
@@@.@@@@.@@.@@@@@@@@.@@@.@@.@...@@.@@@@.@@..@@@@.@.@@@...@.@@.@@@@@.@@@@.@@.@.@@.@@@@@@@@@.@@...@...@.@@@@.@.@@@.@...@..@@@@.@@@.@@.@@@@
@@@@.@..@@@..@@@@.@@@@@.@.@.@....@@@@@.@@@@@@.@@@..@.@..@@@@@@.@@..@.@.@..@@@@@.@@.@@.@.@@@..@@@@@@@.@@@@.@@..@@@@.@@....@.@@@@.@@..@@.@
@@@.@.@..@@@@@@.@.@@@@..@@@@.@@@.@..@@@@@.@..@..........@@.@.@@@@@..@@.@@@@@@@..@.@@..@..@.@@@@@....@@@@@@@...@@@..@@.@@.@...@@.@@..@@..
..@@@@@.@@@.@@.@.@.@@..@.@..@@.@.@.@@@@.@@.@@@.@....@@@@@@@.@.@.@.@...@@.@.@@@@.@@..@@@.....@@@@@@@.@@.@..@@@@@@@@.@.@@.@.@@..@@@.@.@@.@
.@..@@@@.@@@@@@..@.@.@....@..@@.@@..@@@.@@@.@@@@@@..@@@@@@..@...@@.@@...@@@@@.@.@..@..@.@@@@.@@@@.@@@@@@.@@@@@@@@@.@@@@@.@.@@@.@...@.@@.
@@@@.@..@.@@@@.@.@.@..@@@@@@@@@@@@@@..@@@@.@@.@..@@.@@@@.@@@.@@@..@.@@..@@@@@@.@@...@..@..@@@@.@@@@@@@@...@.@@@@@@@@@.@.@@@@@..@@@@@@@.@
@@.@.@@@.@@@@@@@.@.@@@..@.@.@@.@@@@@@@@@@@@..@@@@@@.@.@..@@@@.@.@...@@@.@@@@.@@@@@@.@@@.@@@@@..@@@.@.@.@@@@@..@@.....@@@@@@@.@@@@@@@@@.@
@@.@@@..@@@@@@@@@@@@@@@@.@@@@...@..@.@.@@@@@@@@@.@@.@@@..@.@.@.@@@@.@@.@..@@.@.@.@@@@.@@@@@@.@@@.@@@.@.@...@.@..@@@@@@@@@@..@.@@@..@@@..
@@.@...@..@@@@@@..@@...@@@@@@@@@..@@.@@@..@@.@@.@@.@@.@..@...@.@@@.@@@.@@@@@@@@@.@@@@@...@.@@@@.@@.@@@...@.....@.@@@@.@@.....@@@@...@@@@
@.@@@@@@.@..@@...@@@@@@.@@@@@@@.@.@@.@@@@@@@.@@@@@@@.@.@@@@@.@@@@@@@@.@@@.@.@.@..@.@@.@@@.@@@.@@@..@@..@@@@@@.@@@@..@@@@@@@@@@..@@@@@.@@
@@@@.@@.@@@.....@@.@.@@@.@@@.@@..@.@@@@@@@@.@.@@.@.@..@@...@@..@..@@@.@.@...@.@...@@.@..@.@@.@.@@@@@@@@@@@.@@.@..@@.@@@..@.@.@.@@@@@@.@.
@@@@@.@@...@@@@.@.@@.@@@.@@.@@@...@@@.@..@.@@@@.@.@@@@.@@.@.@@.@.@@@@@@@@@@....@@@.@@..@..@@.@.@@@.@@@@@@@.@@@@..@@@.@@@@...@@@@.@@.@@@.
@@@@@..@@@@@....@@@@.@@.@@..@@@.@.@.@@@.@.@.@@@.@.@@@@@@@..@@.@@@@.@@@@@.@.@..@@@..@.@@@@@@@@@.@@@..@@@.@@@@..@@@.@@@@.@@@..@@@..@.@.@@.