Skip to content

Instantly share code, notes, and snippets.

@gurgeous
Created December 23, 2020 07:08
Show Gist options
  • Save gurgeous/c18eaade49a33d965309091b30a40a4e to your computer and use it in GitHub Desktop.
Save gurgeous/c18eaade49a33d965309091b30a40a4e to your computer and use it in GitHub Desktop.
# append to data
data += (data.max + 1..1000000).to_a
max = data.max
#
# build cups/lookup from data
#
Node = Struct.new(:value, :next)
lookup = {}
cups = nn = Node.new
data.each do |x|
lookup[x] = nn.next = Node.new(x)
nn = nn.next
end
cups = cups.next
nn.next = cups
10000000.times do
# pick up three cups
nn = cups
4.times { nn = nn.next }
pickup = cups.next
cups.next = nn
# pick destination label
label = cups.value - 1
loop do
label = max if label == 0
if pickup.value == label || pickup.next.value == label || pickup.next.next.value == label
label -= 1
else
break
end
end
# insert after label
nn = lookup[label]
after = nn.next
nn.next = pickup
pickup.next.next.next = after
# advance
cups = cups.next
end
# done
nn = lookup[1]
puts nn.next.value * nn.next.next.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment