Page 1 of 3
Quine
Posted: Sat Nov 15, 2008 7:06 pm
by efe
I have a problem with the Quine-Challenge:
I solved it, but I can't submit the answer because it is too long:
The server answers:
Request-URI Too Large
The requested URL's length exceeds the capacity limit for this server.
So what can I do? Is there an alternate way to submit very long answers?
Posted: Sat Nov 15, 2008 7:25 pm
by gfoot
Try sending it as post data?
Posted: Sat Nov 15, 2008 7:26 pm
by gfoot
Posted: Sat Nov 15, 2008 8:45 pm
by efe
I tried it using POST method, but my answer is not accepted. It says the answer was incorrect.
Are there any limitations concerning code-length or cycle-count?
btw, the empty hvm-program should be also a correct answer.
Posted: Sat Nov 15, 2008 9:43 pm
by adum
it's true the empty program is an answer, but not a very interesting one so we don't allow it =)
the max cycle count of 10000 applies to the quine challenge, but it should tell you if that's the problem. if you want, email me your code (adam at adum.com) and i'll see what isn't working. there is probably a limit on code size, but i'm not sure what offhand.
Posted: Sun Nov 16, 2008 12:12 am
by tails
Posted: Sun Nov 16, 2008 6:13 pm
by m!nus
how is that done?
Posted: Sun Nov 16, 2008 6:40 pm
by gfoot
The zip "deflate" algorithm has instructions for "output the following N bytes" and "repeat the N bytes starting from the Mth byte backwards in the existing output". So naming these operations N(n) and P(n,m), show output in comments and no comments on lines that are just data:
Code: Select all
N(0) # (no output)
N(2) # "N(0) N(2)"
N(0)
N(2)
N(0) # (no output)
P(3,2) # "N(0) N(2) N(0)"
N(2) # "P(3,2) N(2)"
P(3.2)
N(2)
P(3,2) # "P(3,2) N(2) P(3,2)"
Note that in P(3,2) it outputs *three* items starting from the second-last printed, so the third item has not been printed yet - the third item ends up being the *first* one printed by the current statement.
It is quite clever. I wrote this from memory of reading a description of the method, so I hope it's correct - otherwise, try searching for "zip quine" and see if you can find the description yourself.
Posted: Mon Nov 17, 2008 10:49 pm
by therethinker
Should also be noted that "HVM run ERROR: invalid instruction (PC=0, STACK_SIZE=0)" is also quining program that isn't accepted

Posted: Thu Nov 27, 2008 7:46 am
by tog
I think I'm really stuck at quine. I've solved quite a few hvm-problems, and I've also thought quite a bit about this one. But I just can't imagine how the solution would look like. I think that I can't encode the program text explicitly, because every time I add a character to encode another character, this additional character must be encoded by another additional character and so on... The only approach I can imagine is some kind of procedural description of the characters (i.e., the characters get computed implicitly). But this procedural description must be contained in the program itself. So this seems to by quite abstruse.
The best solution would be the initialization of the memory-cells with appropriate values, but this seems to be only possible in the local test environment. Oh, and I also searched for a weak spot in the hvm itself to jump to the code-string. But (as expected) this also seems to be impossible.
So has anybody some hint to get me on the right track?
Posted: Thu Nov 27, 2008 9:17 am
by gfoot
There are fairly standard techniques for writing quines in different kinds of languages - you should be able to get some good pointers from a Google search. There's still plenty of work involved in getting one of the common forms to work in hvm.
Posted: Thu Nov 27, 2008 10:18 am
by Mütze
I know how to write a quine program in hvm, but I cannot find a quine challenge, although
I've solved more than 120 challenges (including some hvm challenges). Where is the quine
challenge hidden?
Posted: Thu Nov 27, 2008 10:34 am
by tog
It comes just after Spiral Bits.
Posted: Thu Nov 27, 2008 10:52 am
by Mütze
tog wrote:It comes just after Spiral Bits.
Ok, thanks. I was too lazy to try that.
Posted: Thu Nov 27, 2008 12:48 pm
by gfoot
You could get practicing on the hvm quine anyway, so you've got it ready when the time comes.

Bear in mind the 10000 cycle limit, that bit me a few times.