a.goth wrote:
A brilliant one-liner, by the way! Do you have an even shorter solution by now?
Actually not, I was not working on it for a while.
P.S.: Surely I would look on your improvement.
Oh, I have reread my code to understand it and found that I removed nonzero from the top inefficiently ? would be better. Then I have read your improvement ... and it was easy to understand

as it was exactly what I got. ... except my starting @2@ rather to yours 2@@. My version allows more loops to be run (of course it was calced to be sufficient according to given parameters).
OK how it works ... it uses comparator to reorder top two stack elements to have minimum on top.
It inserts element on top of the stack and uses comparator to leave minimum on top comparing with all elements on the stack. When all elements were compared new insert is allowed.
Insert of zero immediately outputs top element (with comma) what invokes cycle comparing all elements with the top. When just one element remains, it is output.
Of course it is time inefficient ... meaning a lot of loop cycles is used as just minimum is detected losing all other comparison results. ... for K nonzeros followed by K-1 zeros it requires (1+2+...+(K-1)) cycles to output minimum and ((K-2)+(K-3)+...+2+1) cycles to output minima of remaining subsets.
Would it be possible to nest loops in such an order that input till first zero would be read first and loop using comparators would run afterwards? In that case much more zeros would be read, but
K+((K-1)+(K-2)+...+2+1) loops would suffice ...
For the size of code it has small influence, as one @ multiplies bound for loops by golden ratio and probably it is enough to cover this difference.
So the rearranged loop code must be at most the same size to improve the length of the whole code.
Here is the comparison of the ideas ... I have not tested it yet ... whether it actually works.
Code: Select all
0,,@2@@@@@@@@@@ xv2vx2^d1-1^d1+v2v1+x^?$1[,21^?$g1vpP22^?$1vp!
0,@2@@@@@@@@@ ,1v1^?$+xv2vx2^d1-1^d1+v2v1+x^?$?p01gP2x^?$?p!
Yes, it works, but needs 23 more chars to reduce to got to teebee's bound.
Comparator
takes a lot of space itself.
But surely there must be some bigger trick than improving this idea.