aboutsummaryrefslogtreecommitdiff
path: root/2022/05/solve.py
blob: fb996bc819e434ef3eafaa0d9edf3607040409e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
data = [dat for dat in open("input").readlines() if dat != '']

def solve(mover_version):
    # lists >> stacks hehe
    stacks = [[] for i in range(len(data[0]) // 4)]

    start = True
    for line in data:
        if start:
            if line[0] == '\n':
                start = False
                continue

            cols = line.strip()
            i = 1
            while i < len(cols):
                if cols[i-1] == '[':
                    stacks[i // 4].insert(0, cols[i])
                i += 4
        else:
            proc = line.split(" ")
            what = int(proc[1])
            source = int(proc[3]) - 1
            target = int(proc[5]) - 1

            crates = stacks[source][-what:]
            if mover_version == 9000:
                crates = crates[::-1]
            stacks[target] += crates
            stacks[source] = stacks[source][:-what]

    print(f"Part {'1' if mover_version == 9000 else '2'}: {''.join([stack[-1] for stack in stacks if len(stack) > 0])}")

solve(9000)
solve(9001)