Second attempt, still stuck :-(
Posted: Sat Apr 19, 2014 5:29 am
Hi Guys,
I got into this years ago and got up to about lvl 100, now I've got some time on my hands and decided to try again - new algorithms(!), new code, new tricks... slightly better result (lvl125).
I'm using a variation of Dijkstra, and it works a dream for most levels (<=1 second) but occasionally it gets stuck (often levels 58, 78 or 86) (the randomness is introduced by perl's hashing algorithm - which is OK, since equivalent nodes are normally selected at random anyway)
I'm testing connectivity (to prevent islands being cut off) and a few other optimisations, but when it starts back-tracking it quickly reduces to a brute-force behaviour
What sort of things can hint at problems early, or are there some positive things to search for, such as the number of edges connecting with a node, etc...?
On a side note, does the choice between a node-based and edge based algorithm make things easier / harder?
cheers, thank in advance and a tip-of-the-hat to the author (Adum?) Great puzzle!
I got into this years ago and got up to about lvl 100, now I've got some time on my hands and decided to try again - new algorithms(!), new code, new tricks... slightly better result (lvl125).
I'm using a variation of Dijkstra, and it works a dream for most levels (<=1 second) but occasionally it gets stuck (often levels 58, 78 or 86) (the randomness is introduced by perl's hashing algorithm - which is OK, since equivalent nodes are normally selected at random anyway)
I'm testing connectivity (to prevent islands being cut off) and a few other optimisations, but when it starts back-tracking it quickly reduces to a brute-force behaviour

What sort of things can hint at problems early, or are there some positive things to search for, such as the number of edges connecting with a node, etc...?
On a side note, does the choice between a node-based and edge based algorithm make things easier / harder?
cheers, thank in advance and a tip-of-the-hat to the author (Adum?) Great puzzle!