mirror of
https://github.com/sstent/Advent2021.git
synced 2026-01-27 17:42:17 +00:00
first
This commit is contained in:
107
Day3_2/main.py
Normal file
107
Day3_2/main.py
Normal file
@@ -0,0 +1,107 @@
|
||||
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"""
|
||||
|
||||
c02 = input_data.split("\n")
|
||||
# c02 = test_data.split("\n")
|
||||
|
||||
line_len = len(c02[0])
|
||||
|
||||
oxygen = c02.copy()
|
||||
c02 = c02.copy()
|
||||
|
||||
for i in range(line_len):
|
||||
if len(oxygen) == 1:
|
||||
print("only 1 left")
|
||||
break
|
||||
#get count for this column
|
||||
counts_ones = 0
|
||||
counts_zeroes = 0
|
||||
for line in oxygen:
|
||||
line = list(line)
|
||||
bit = line[i]
|
||||
if bit == "1":
|
||||
counts_ones += 1
|
||||
elif bit == "0":
|
||||
counts_zeroes += 1
|
||||
print("Zeros:" + str(counts_zeroes) + "Ones:" + str(counts_ones))
|
||||
if counts_ones >= counts_zeroes:
|
||||
for index, line in reversed(list(enumerate(oxygen))):
|
||||
# print(line)
|
||||
if line[i] == "0":
|
||||
print("drop zeros in col " + str(i)+ ":" + ''.join(str(i) for i in line))
|
||||
oxygen.remove(line)
|
||||
elif counts_ones < counts_zeroes:
|
||||
for index, line in reversed(list(enumerate(oxygen))):
|
||||
if line[i] == "1":
|
||||
print("drop ones in col" + str(i)+ ":" + ''.join(str(i) for i in line))
|
||||
oxygen.remove(line)
|
||||
|
||||
print("remaining oxygen")
|
||||
print(oxygen)
|
||||
|
||||
|
||||
print(oxygen)
|
||||
|
||||
|
||||
###CO2
|
||||
for i in range(line_len):
|
||||
if len(c02) == 1:
|
||||
print("only 1 left")
|
||||
break
|
||||
#get count for this column
|
||||
counts_ones = 0
|
||||
counts_zeroes = 0
|
||||
for line in c02:
|
||||
line = list(line)
|
||||
bit = line[i]
|
||||
if bit == "1":
|
||||
counts_ones += 1
|
||||
elif bit == "0":
|
||||
counts_zeroes += 1
|
||||
print("Zeros:" + str(counts_zeroes) + "Ones:" + str(counts_ones))
|
||||
if counts_ones < counts_zeroes:
|
||||
for index, line in reversed(list(enumerate(c02))):
|
||||
# print(line)
|
||||
if line[i] == "0":
|
||||
print("drop zeros in col " + str(i)+ ":" + ''.join(str(i) for i in line))
|
||||
c02.remove(line)
|
||||
elif counts_ones >= counts_zeroes:
|
||||
for index, line in reversed(list(enumerate(c02))):
|
||||
if line[i] == "1":
|
||||
print("drop ones in col" + str(i)+ ":" + ''.join(str(i) for i in line))
|
||||
c02.remove(line)
|
||||
|
||||
print("remaining c02")
|
||||
print(c02)
|
||||
|
||||
|
||||
print(c02)
|
||||
|
||||
|
||||
|
||||
# print(epsilon)
|
||||
|
||||
c02 = ''.join(str(i) for i in c02)
|
||||
oxygen = ''.join(str(i) for i in oxygen)
|
||||
print(str(int(c02, 2)))
|
||||
print(str(int(oxygen, 2)))
|
||||
|
||||
powerconsumption = int(c02, 2) * int(oxygen, 2)
|
||||
print(powerconsumption)
|
||||
submit(powerconsumption)
|
||||
23
Day3_2/promblem.txt
Normal file
23
Day3_2/promblem.txt
Normal 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?
|
||||
Reference in New Issue
Block a user