master
Matthew Butterick 4 years ago
parent 92ab44f92a
commit fa1327e70c

@ -69,36 +69,35 @@
9876) 9876)
;; 2 ;; 2
(define (shift-origin! moons pos)
(for ([moon (in-list moons)])
(set-$moon-pos! moon (map - ($moon-pos moon) pos))))
(define (period str) (define (period str)
(for*/list ([which-moon (list first second third fourth)] (apply lcm
[which-dim (list first second third)]) (for*/list ([dim (list first second third)])
(define moons (str->moons str)) (define moons (str->moons str))
(shift-origin! moons ($moon-pos (which-moon moons))) (define (get-dims) (for*/list ([moon (in-list moons)]
(let loop ([count 1]) [field (in-list (list $moon-pos $moon-vel))])
(dim (field moon))))
(define dims0 (get-dims))
(let loop ([count 0])
(step! moons) (step! moons)
(if (and (= 0 (which-dim ($moon-pos (which-moon moons)))) (if (andmap = dims0 (get-dims))
(= 0 (which-dim ($moon-vel (which-moon moons))))) (add1 count)
count (loop (add1 count)))))))
(loop (add1 count))))))
(check-eq? (check-eq?
(apply lcm (period "<x=-1, y=0, z=2> (period "<x=-1, y=0, z=2>
<x=2, y=-10, z=-7> <x=2, y=-10, z=-7>
<x=4, y=-8, z=8> <x=4, y=-8, z=8>
<x=3, y=5, z=-1>")) <x=3, y=5, z=-1>")
2772) 2772)
(check-eq? (check-eq?
(apply lcm
(period "<x=-8, y=-10, z=0> (period "<x=-8, y=-10, z=0>
<x=5, y=5, z=10> <x=5, y=5, z=10>
<x=2, y=-7, z=3> <x=2, y=-7, z=3>
<x=9, y=-8, z=-3>")) <x=9, y=-8, z=-3>")
4686774924) 4686774924)
(check-eq? (period (file->string "12.rktd")) 307043147758488)