-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path22.q
54 lines (45 loc) · 1.24 KB
/
22.q
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
/--- Day 22: Sporifica Virus ---
d:"U" / initial direction
l:12 12 / starting location
i:0 / infected count
g:(`u#enlist 0N 0N)!enlist " " / initialise grid to null
(til count r){ {g[(x;y)]:z}'[x;til count y;y] }'r:read0 `:input/22.txt;
On:()!();
On["#"]: {
d::"RLUD""UDLR"?d; / turn right
g[l]:"." / clean
};
On[" ."]:{
d::"LRDU""UDLR"?d; / turn left
g[l]:"#"; / infect
i+:1 / infected++
};
move:{ l+:(1 0;-1 0;0 -1; 0 1)"DULR"?d };
burst:{ On[g[l]][]; move[] };
do[10000;burst[]];
i
/5433
d:"U" / re-initialise direction
l:12 12; / re-initialise starting location
i:0 / re-initialise infected count
g:(`u#enlist 0N 0N)!enlist " " / re-initialise grid to null
(til count r){ {g[(x;y)]:z}'[x;til count y;y] }'r; / re-build grid
On["#"]: {
g[l]:"F"; / flag
d::"RLUD""UDLR"?d / turn right
};
On["F"]: {
g[l]:" "; / clean
d::"DURL""UDLR"?d / turn 180
};
On["W"]:{
g[l]:"#"; / infect
i+:1 / infected++
};
On[" ."]:{
g[l]:"W"; / weaken
d::"LRDU""UDLR"?d / turn left
};
do[10000000;burst[]];
i
/2512599