-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday_06.py
69 lines (50 loc) · 1.08 KB
/
day_06.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
65
66
67
68
69
import aoc_helper
from aoc_helper import (
extract_ints,
map,
range,
)
import sys
EXAMPLE = "EXAMPLE" in sys.argv
TWO = "2" in sys.argv
DAY = 6
YEAR = 2023
if EXAMPLE:
if TWO:
raw, answer = aoc_helper.get_sample_input(day=DAY, year=YEAR, part=2)
else:
raw, answer = aoc_helper.get_sample_input(day=DAY, year=YEAR, part=1)
else:
raw = aoc_helper.fetch(DAY, YEAR)
times, distances = raw.splitlines()
times = extract_ints(times)
distances = extract_ints(distances)
races = [*zip(times, distances)]
# part 1
p = 1
for t,d in races:
c = 0
for w in range(t):
if (t-w)*w > d: c += 1
p *= c
print(p)
# part 2
time = int("".join(map(str,times)))
distance = int("".join(map(str,distances)))
if (time*time)/4 < distance: print(0); exit()
def f(m,t=time, d=distance):
return (t-m)*m > d
l = -1
r = (time//2) + 1
while (r-l) > 1:
m = (l+r)//2
if f(m):
r = m
else:
l = m
print(time - 2*r + 1 )
# bruteforce takes ~28s
# c = 0
# for w in tqdm(range(time)):
# c += (time-w)*w > distance
# print(c)