-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathday05.py
executable file
·64 lines (51 loc) · 1 KB
/
day05.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
from utils.all import *
advent.setup(2022, 5)
fin = advent.get_input()
# NOTE: Will only work with my input because I did not bother parsing the stacks
# and copy-pasted them by hand instead.
stacks = [
0,
list('WBGZRDCV'),
list('VTSBCFWG'),
list('WNSBC'),
list('PCVJNMGQ'),
list('BHDFLST'),
list('NMWTVJ'),
list('GTSCLFP'),
list('ZDB'),
list('WZNM'),
]
for line in fin:
if line == '\n':
break
for line in fin:
a, b, c = map(int, re.findall(r'\d+', line))
for _ in range(a):
x = stacks[b].pop(0)
stacks[c].insert(0, x)
ans = ''.join(x[0] for x in stacks[1:])
advent.print_answer(1, ans)
stacks = [
0,
'WBGZRDCV',
'VTSBCFWG',
'WNSBC',
'PCVJNMGQ',
'BHDFLST',
'NMWTVJ',
'GTSCLFP',
'ZDB',
'WZNM',
]
fin.seek(0)
for line in fin:
if line == '\n':
break
for line in fin:
a, b, c = map(int, re.findall(r'\d+', line))
x = stacks[b][:a]
stacks[c] = x + stacks[c]
stacks[b] = stacks[b][a:]
ans = ''.join(x[0] for x in stacks[1:])
advent.print_answer(2, ans)