This commit is contained in:
2021-12-06 07:37:45 -05:00
commit 6bff0ee551
22 changed files with 5034 additions and 0 deletions

60
Day3_1/main.py Normal file
View File

@@ -0,0 +1,60 @@
from aocd import get_data
from aocd import submit
input_data = get_data(day=3, year=2021)
test_data = """00100
11110
10110
10111
10101
01111
00111
11100
10000
11001
00010
01010"""
lines = input_data.split("\n")
# lines = test_data.split("\n")
line_len = len(lines[0])
counts_ones = [0] * line_len
counts_zeroes = [0] * line_len
for line in lines:
power = list(line)
power = [int(i) for i in power]
for index, bit in enumerate(power):
if bit == 1:
counts_ones[index] += 1
elif bit == 0:
counts_zeroes[index] += 1
print(counts_ones)
print(counts_zeroes)
#loop through bits and find highest lowest
gamma = [0] * line_len
epsilon = [0] * line_len
for i in range(line_len):
print(i)
if counts_ones[i] > counts_zeroes[i]:
gamma[i] = 1
epsilon[i] = 0
elif counts_ones[i] < counts_zeroes[i]:
gamma[i] = 0
epsilon[i] = 1
# print(gamma)
# print(epsilon)
gamma = ''.join(str(i) for i in gamma)
epsilon = ''.join(str(i) for i in epsilon)
powerconsumption = int(gamma, 2) * int(epsilon, 2)
print(powerconsumption)
# submit(depth*horizontal)

23
Day3_1/promblem.txt Normal file
View File

@@ -0,0 +1,23 @@
--- Part Two ---
Based on your calculations, the planned course doesn't seem to make any sense. You find the submarine manual and discover that the process is actually slightly more complicated.
In addition to horizontal position and depth, you'll also need to track a third value, aim, which also starts at 0. The commands also mean something entirely different than you first thought:
down X increases your aim by X units.
up X decreases your aim by X units.
forward X does two things:
It increases your horizontal position by X units.
It increases your depth by your aim multiplied by X.
Again note that since you're on a submarine, down and up do the opposite of what you might expect: "down" means aiming in the positive direction.
Now, the above example does something different:
forward 5 adds 5 to your horizontal position, a total of 5. Because your aim is 0, your depth does not change.
down 5 adds 5 to your aim, resulting in a value of 5.
forward 8 adds 8 to your horizontal position, a total of 13. Because your aim is 5, your depth increases by 8*5=40.
up 3 decreases your aim by 3, resulting in a value of 2.
down 8 adds 8 to your aim, resulting in a value of 10.
forward 2 adds 2 to your horizontal position, a total of 15. Because your aim is 10, your depth increases by 2*10=20 to a total of 60.
After following these new instructions, you would have a horizontal position of 15 and a depth of 60. (Multiplying these produces 900.)
Using this new interpretation of the commands, calculate the horizontal position and depth you would have after following the planned course. What do you get if you multiply your final horizontal position by your final depth?