You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
block size 128 (0.size (8) * 16) gave good results on one computer...
block size | hits | misses | miss rate | runtime / original
----|---------|-----|----------|------
8 | 1073198 | 64 | 0.000061 | 1.33
16 | 533709 | 102 | 0.00019 | 0.67
32 | 263990 | 120 | 0.00045 | 0.4
64 | 129163 | 169 | 0.0013 | 0.25
128 | 61726 | 280 | 0.0045 | 0.22
256 | 27929 | 494 | 0.017 | 0.8
However, on a different computer, 8 * 7 = 56 was the best.
Haven't investigated why.
Previously I had tried the individual approaches (may still be available
on branches unless I decide to delete them):
* Pack N bits into blocks without running multiple iterations at once:
Slowdown by about 1.5x
* Run fixed N iterations without packing bits into blocks:
Slowdown by about 2x because we do 2N-1 reads for every N iterations.
* Run for every N distance without packing bits into blocks:
Slowdown by about 1.2x because we tend to take fewer than 2N-1 cycles
to move N distance.
Need to combine the first and last bullet points, plus add a cache.
Copy file name to clipboardexpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,8 @@ Solutions with interesting algorithmic choices:
66
66
A few ideas can be found in the [can it be done more efficiently?](https://www.reddit.com/r/adventofcode/comments/7lunzu/2017_day_24_so_can_it_be_done_more_efficiently/) thread.
67
67
The only one I needed to use was the one that optimises out any `[X, X]` dominoes.
68
68
There are only 6 `[X, X]` dominoes in my input of 57, but this decreases the number of bridges found from 288414 to 21783.
69
+
* 25 (Turing Machine):
70
+
Pack into blocks of N bits (experimentally determined that 128 is good), and cache what happens every time the head moves N steps away as seen in [askalski's solutions](https://www.reddit.com/r/adventofcode/comments/7q6s80/2017_optimized_solutions_in_c_195_ms_total/).
69
71
70
72
Solutions notable for good leaderboard-related reasons:
0 commit comments