-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathday10.py
executable file
·57 lines (42 loc) · 1.15 KB
/
day10.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
#!/usr/bin/env python3
import sys
import re
def simulate(pts, t):
xs = [x + t*v for x,_,v,_ in pts]
ys = [y + t*v for _,y,_,v in pts]
return tuple(zip(xs, ys))
def box(pts):
minx, maxx = min(p[0] for p in pts), max(p[0] for p in pts)
miny, maxy = min(p[1] for p in pts), max(p[1] for p in pts)
return minx, miny, maxx-minx, maxy-miny
def search(pts):
t1 = 0
t2 = 1
f1 = box(simulate(pts, t1))[3]
while f1 > box(simulate(pts, t2))[3]:
t2 <<= 1
while t1 != t2:
t = (t1 + t2)//2
m = box(simulate(pts, t ))[3]
r = box(simulate(pts, t + 1))[3]
if r > m:
t2 = t
else:
t1 = t+1
return t1
# Open the first argument as input or use stdin if no arguments were given
fin = open(sys.argv[1]) if len(sys.argv) > 1 else sys.stdin
points = []
for line in fin:
points.append(tuple(map(int, re.findall(r'-?\d+', line))))
t = search(points)
final_points = set(simulate(points, t))
x, y, w, h = box(final_points)
word = ''
for j in range(y, y + h + 1):
for i in range(x, x + w + 1):
word += '#' if (i, j) in final_points else ' '
word += '\n'
# Can't really print this nicely, but whatever
print('Part 1:', '\n' + word)
print('Part 2:', t)