Search found 9 matches

by Adzeye
Sun Mar 18, 2012 7:09 pm
Forum: General Puzzles
Topic: Puzzle Suggestions
Replies: 29
Views: 83784

A Rush-Hour like sliding block games could be interesting, if it hasn't been suggested before.
by Adzeye
Fri Sep 30, 2011 3:05 am
Forum: Modulo Puzzle
Topic: Brute Force Solution
Replies: 21
Views: 75558

Not far, if you look at the high score table you'll see people slow down in the early 20ish.
by Adzeye
Sat Jul 02, 2011 5:52 pm
Forum: Crossflip
Topic: Code optimization
Replies: 57
Views: 164936

I think that bitfield representation and operations is still the fastest option. The idea is more that, among your thousands of "equations", both during the elimination and substitution steps of gaussian, only a few will contain the parameter/variable you are trying to do something with.
by Adzeye
Sat Jul 02, 2011 3:34 pm
Forum: Crossflip
Topic: Code optimization
Replies: 57
Views: 164936

Gauss is a good start, of course, but what you have to remember is to apply it to the context of this puzzle. We have huge matrices of 0's and 1's, but only a tiny fraction of it is actually a '1', which is what you are interested in. Most of the time you spend iterating through the matrix does not ...
by Adzeye
Sun Jun 26, 2011 9:13 pm
Forum: General
Topic: My presentation
Replies: 11
Views: 33564

By trying different puzzles :wink: . You could start by writing a brute-force solver. It won't get you very far, but will give you the general idea. Then, add stuff to that program, try to eliminate solutions trees early on. You should solve some problems by hand too to get used to the puzzle and to...
by Adzeye
Thu Jun 23, 2011 1:55 pm
Forum: General
Topic: My presentation
Replies: 11
Views: 33564

It's not cheating...some puzzles simply have a definite "solution". Runaway Robot's being fairly obvious, but Crossflip and Oneofus can essentially be represented as mathematical problems (which have been researched before - hence why so many people have done all the levels). Even if you k...
by Adzeye
Tue Jun 16, 2009 9:34 pm
Forum: OneOfUs
Topic: What's with the higher levels?
Replies: 2
Views: 19596

Only the puzzles with 2-3 colors. I only noticed this at 158 because neither my two algo can solve it so I wanted to verify some data by hand.

Edit : Found the problem. Moving on again.
you're presumably not actually using the flash/java app anyway
But yeah, that makes sense.
by Adzeye
Tue Jun 16, 2009 7:47 pm
Forum: OneOfUs
Topic: What's with the higher levels?
Replies: 2
Views: 19596

What's with the higher levels?

Did you run out of shapes or something? There aren't as many colors/shapes on screen then in the page's source code.

Simple, but nice puzzle, btw. Trying to break the level 158 wall (what the heck is with that one anyway?).
by Adzeye
Mon Apr 13, 2009 6:42 pm
Forum: Runaway Robot Puzzle
Topic: Nice game
Replies: 15
Views: 53280

You could always try to make an algorithm that doesn't need much memory? Mine doesn't even reach a meg.