One Elf has the important job of loading all of the rucksacks with supplies for the jungle journey. Unfortunately, that Elf didn't quite follow the packing instructions, and so a few items now need to be rearranged.
Each rucksack has two large compartments. All items of a given type are meant to go into exactly one of the two compartments. The Elf that did the packing failed to follow this rule for exactly one item type per rucksack.
The Elves have made a list of all of the items currently in each rucksack (your puzzle input), but they need your help finding the errors. Every item type is identified by a single lowercase or uppercase letter (that is, a and A refer to different types of items).
The list of items for each rucksack is given as characters all on a single line. A given rucksack always has the same number of items in each of its two compartments, so the first half of the characters represent items in the first compartment, while the second half of the characters represent items in the second compartment.
For example, suppose you have the following list of contents from six rucksacks:
vJrwpWtwJgWrhcsFMMfFFhFp
jqHRNqRjqzjGDLGLrsFMfFZSrLrFZsSL
PmmdzqPrVvPwwTWBwg
wMqvLMZHhHMvwLHjbvcjnnSBnvTQFn
ttgJtRGJQctTZtZT
CrZsJsPPZsGzwwsLwLmpwMDw
vJrwpWtwJgWrhcsFMMfFFhFp
, which means its first compartment contains the items vJrwpWtwJgWr
, while the second compartment contains the items hcsFMMfFFhFp
. The only item type that appears in both compartments is lowercase p
.jqHRNqRjqzjGDLGL
and rsFMfFZSrLrFZsSL
. The only item type that appears in both compartments is uppercase L.PmmdzqPrV
and vPwwTWBwg
; the only common item type is uppercase P
.v
.t
.s
.To help prioritize item rearrangement, every item type can be converted to a priority:
Lowercase item types `a` through `z` have priorities 1 through 26.
Uppercase item types `A` through `Z` have priorities 27 through 52.
In the above example, the priority of the item type that appears in both compartments of each rucksack is 16 (p), 38 (L), 42 (P), 22 (v), 20 (t), and 19 (s); the sum of these is 157.
Find the item type that appears in both compartments of each rucksack. What is the sum of the priorities of those item types?
# Python imports
from itertools import zip_longest
from pathlib import Path
test = Path("data/day03_test.txt") # test data
data = Path("data/day03_data.txt") # puzzle data
def parse_rucksacks(fpath: Path) -> list[str]:
"""Return a list of rucksack content strings
:param fpath: path to puzzle input
"""
with fpath.open() as ifh:
rucksacks = [_.strip() for _ in ifh.readlines()]
return rucksacks
def find_errors(rucksack: tuple[str, str]) -> str:
"""Return the common item (character) in each compartment
:param rucksack: a tuple where each string represents a compartment
"""
errors = (set(rucksack[0]).intersection(set(rucksack[1])))
return list(errors)[0]
def prioritise(error: str) -> int:
"""Convert passed character to a priority integer
:param error: the common item in each rucksack compartment
"""
if ord(error) > 96:
return ord(error) - 96
return ord(error) - 38
def part1(fpath: Path) -> int:
"""Solve the puzzle"""
rucksacks = parse_rucksacks(fpath) # Load rucksack puzzle data
# split rucksacks into compartments
compartments = [(_[:len(_)//2], _[len(_)//2:]) for _ in rucksacks]
errors = [find_errors(_) for _ in compartments] # identify common characters
priorities = [prioritise(_) for _ in errors] # calculate priorities
return sum(priorities)
part1(test)
157
part1(data)
7889
As you finish identifying the misplaced items, the Elves come to you with another issue.
For safety, the Elves are divided into groups of three. Every Elf carries a badge that identifies their group. For efficiency, within each group of three Elves, the badge is the only item type carried by all three Elves. That is, if a group's badge is item type B, then all three Elves will have item type B somewhere in their rucksack, and at most two of the Elves will be carrying any other item type.
The problem is that someone forgot to put this year's updated authenticity sticker on the badges. All of the badges need to be pulled out of the rucksacks so the new authenticity stickers can be attached.
Additionally, nobody wrote down which item type corresponds to each group's badges. The only way to tell which item type is the right one is by finding the one item type that is common between all three Elves in each group.
Every set of three lines in your list corresponds to a single group, but each group can have a different badge item type. So, in the above example, the first group's rucksacks are the first three lines:
vJrwpWtwJgWrhcsFMMfFFhFp
jqHRNqRjqzjGDLGLrsFMfFZSrLrFZsSL
PmmdzqPrVvPwwTWBwg
And the second group's rucksacks are the next three lines:
wMqvLMZHhHMvwLHjbvcjnnSBnvTQFn
ttgJtRGJQctTZtZT
CrZsJsPPZsGzwwsLwLmpwMDw
In the first group, the only item type that appears in all three rucksacks is lowercase r
; this must be their badges. In the second group, their badge item type must be Z
.
Priorities for these items must still be found to organize the sticker attachment efforts: here, they are 18 (r) for the first group and 52 (Z) for the second group. The sum of these is 70.
Find the item type that corresponds to the badges of each three-Elf group. What is the sum of the priorities of those item types?
def find_badge(group: tuple[str, str, str]) -> str:
"""Return the common character in each group
:param group: three rucksacks, one per group member
"""
badge = set(group[0]).intersection(set(group[1])).intersection(set(group[2]))
return list(badge)[0]
def part2(fpath):
"""Solve the puzzle"""
rucksacks = parse_rucksacks(fpath) # load rucksack data
groups = zip_longest(*[iter(rucksacks)]*3) # split rucksack data into groups of three
badges = [find_badge(_) for _ in groups] # find common character in each group
priorities = [prioritise(_) for _ in badges] # calculate priorities
return sum(priorities)
part2(test)
70
part2(data)
2825