|  | 
|  | 
| back to board | Hint Posted by Bekzhan  23 Nov 2012 23:12Backtracking works on this problem) I wrote code, using it, and i thought it'll got TL. But when I tried, it get AC) (Sorry for my poor english)Re: Hint Posted by ER  5 May 2014 11:39The running time of a simple backtracking search will depend on the move search order you use.
 For example, this order:
 
 moves = [ a, e, f, b, c, g, h, d ]
 where a = (1,-2)
 b = (1,2)
 c = (-1,2)
 d = (-1,-2)
 e = (2,1)
 f = (2,-1)
 g = (-2,1)
 h = (-2,-1)
 
 works great for n = 7, but not 6 or 8.
 | 
 | 
|