|  | 
|  | 
| вернуться в форум | Is greedy method ok or not? Is it nessary to make full search?Re: Is greedy method ok or not? Is it nessary to make full search? Послано svr  27 июн 2007 13:45I think that it is DP-problemWe consider 2^16 states from 0 to final=2^16-1
 Before we make precalculation finding for each draught
 finite possible moves just as adjacent to some
 another draught and bisectors between adjacent rays
 Anywhere we must use eps≈0.0000001 as precision level.
 Having found all possible moves we can easy reduce state k
 to states with few value because one move make number of draughts smaller.
 Finding all possibilities we must consider adjacent rays to draughts with the same color
 as now active  draught.
 
 Edited by author 27.06.2007 13:46
Re: Is greedy method ok or not? Is it nessary to make full search? I think, it is impolite to explain solutions of good problems here in forum. Of course, greedy algo doesn't work here...Re: Is greedy method ok or not? Is it nessary to make full search? Послано svr  27 июн 2007 23:36This is an old problem and beginers needclear plan before starting to solve.
Re: Is greedy method ok or not? Is it nessary to make full search? I agree with svr. Things required to solve this problem are quite conceptual, so it's ok to tell them in the forum. | 
 | 
|