-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19.coffee
61 lines (48 loc) · 1017 Bytes
/
19.coffee
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
{_log} = require './util'
_print = _log.noLocate
find_greedy_elf1 = ( num )->
els = [1..num]
j = 0
while els.length>1
num = els.length
_print.darkGray num, els[..4].join ','
els = for i in [j...els.length] by 2
els[i]
j = (j+num)%2
els[0]
assert = ( cond, msg... )->
if not cond
_print.red msg...
return
#
# mark and sweep in each cycle
#
skip = 0
find_greedy_elf2 = ( num, get_distance )->
els = [1..num]
while els.length>1
num = els.length
_print.darkGray num, els[..4].join ','
dirty = 0
for c, i in els
if c
_print.clear i, num unless skip++%10000
d = get_distance num
j = (i+d+dirty)%els.length
assert els[j], 'error', i, j, els[j-1..j+1], num, dirty
els[j]=0
--num
++dirty
else
--dirty
_print.clear i, num, '\n'
els = (c for c in els when c)
els[0]
do ->
try
_log.yellow find_greedy_elf1 3018458
_log.yellow find_greedy_elf2 3018458, (n)->1
_log.yellow find_greedy_elf2 3018458, (n)->n//2
catch e
_log.red e
return