-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path22-2.janet
73 lines (62 loc) · 1.65 KB
/
22-2.janet
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
70
71
72
73
(def input
(->> (slurp "22-input.txt")
(string/trim)
(string/split "\n")))
(def num-rows (length input))
(def num-cols (length (first input)))
(def CLEAN 0)
(def WEAKENED 1)
(def INFECTED 2)
(def FLAGGED 3)
(def nodes @{})
(var counter 0)
(for r 0 num-rows
(for c 0 num-cols
(if (= (get (get input r) c) 35)
(put nodes [r c] INFECTED))))
(def virus
(let [row (/ (- num-rows 1) 2)
col (/ (- num-cols 1) 2)]
@{:facing :up
:pos [row col]}))
(defn turn-left (virus)
(put virus :facing
(case (virus :facing)
:up :left
:right :up
:down :right
:left :down)))
(defn turn-right (virus)
(put virus :facing
(case (virus :facing)
:up :right
:right :down
:down :left
:left :up)))
(defn walk (virus)
(let [[r c] (virus :pos)]
(put virus :pos
(case (virus :facing)
:up [(- r 1) c]
:right [r (+ c 1)]
:down [(+ r 1) c]
:left [r (- c 1)]))))
(defn burst (virus nodes)
(let [pos (virus :pos)
state (or (get nodes pos) CLEAN)]
(case (get nodes pos)
WEAKENED (do
(++ counter))
FLAGGED (do
(turn-right virus)
(turn-right virus))
INFECTED (do
(turn-right virus)
(put nodes (virus :pos) nil))
# default: CLEAN or nil
(turn-left virus))
(put nodes pos (% (+ state 1) 4)))
(walk virus))
(for i 0 10_000_000
(burst virus nodes))
(pp counter)