|  | 
|  | 
| вернуться в форум | Strange WA #2 What can be in this test? What answer for this test?
 5 1 1 0.02
 .#...
 1 1
 5 1
 
 Is answer "0.00"???
"0.00" is correct (+) Is answer "0.00"??? Yes. It is "0.00". If he can't reach some bomb he moves to the next one. What if none of the bombs can be reached? If this is the case, you may assume, that agent's mission is complete - he can do nothing, so he does nothing and it takes him no time to do it!I got WA in #2 too Is that #2?Re: I got WA in #2 too Послано KALO  28 окт 2010 00:14I can't get through test#2 please help.Re: I got WA in #2 too I also had that problem(wa2). But when I made a test I understood my mistake and got ac. I've used dijkstraand in main method I did like this
 
 for(int i = 0; i< k - 1; i ++){
 dijkstra(i);
 ......
 }
 
 and this was wrong
 example imagine I cannot reach to th 3rd boomb.So my walk will be like this
 0 ->1 ->2 ->3(unreachable) 3->4 .....
 instead, it must be like this
 0 ->1 ->2 ->3(unreachable) 2->4 .....
 
 I dont know your problem but mine was like above [stupid(:]
 
 test
 5 5 5 1
 .....
 .###.
 .#.#.
 .###.
 .....
 1 1
 5 1
 3 3
 5 5
 1 5
 1 3
 ans 14
 If it wont help,  you can post me ur code(to email)
 
 
 Edited by author 12.11.2010 08:20
Re: I got WA in #2 too Послано KALO  15 ноя 2010 00:06Thank you!Re: I got WA in #2 too Thanks | 
 | 
|