Huge differences between people's level.

Post Reply
coderT
Posts: 17
Joined: Wed Nov 12, 2008 5:37 am

Huge differences between people's level.

Post by coderT »

Just by doing brute force recursion won't even get you up to level 50, I think it's because there are so many choices each move, not just directions like in Runaway and Mortal coil.
Wonder how people got to 1000... :shock:
therethinker
Posts: 144
Joined: Fri Mar 28, 2008 11:29 pm
Location: #hacker.org on Freenode

Post by therethinker »

By not doing brute-force ;-)

There are plenty of algorithms & heuristics that people can implement in order to speed things up ;-)
V4hn
Posts: 14
Joined: Tue Nov 27, 2007 12:39 pm
Contact:

Post by V4hn »

Yeah, but at last it's a search for an hamiltonian path, which is an NP-complete Problem...
there _can't_ be an easy solution.
Image
gfoot
Posts: 269
Joined: Wed Sep 05, 2007 11:34 pm
Location: Brighton, UK

Post by gfoot »

The leaderboard says otherwise...
V4hn
Posts: 14
Joined: Tue Nov 27, 2007 12:39 pm
Contact:

Post by V4hn »

I'm quite interested in whether those top level solutions exploit some specific
attribute of those given graphs or if they do challenge the typical hamiltonian path problem?
Image
User avatar
Nick-Aotmzgin
Posts: 64
Joined: Sun Jun 14, 2009 11:01 am
Location: Microsoft Labs

Post by Nick-Aotmzgin »

speak with an admin maybe the Statistica and ranking system has been damaged.
(i) Hacerks Group -> Greek Hackers Group (House of Hackers Offical Community)
V4hn
Posts: 14
Joined: Tue Nov 27, 2007 12:39 pm
Contact:

Post by V4hn »

i'm quite sure they're not. :lol:
Image
Zeta
Posts: 62
Joined: Thu Apr 16, 2009 3:37 pm

Post by Zeta »

Welcome to the wonderful world of heuristic algorithms to tackle NP-complete problems: They may find a solution in acceptable time in the majority of cases, but if they don't find a solution you can't be sure if there isn't one at all, or only your algorithm failed. Here they work very well...
Post Reply