ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1033. Labyrinth

Some info about this problem
Posted by Olzhas aka Whale2dy 1 Apr 2007 01:50
Hey, guys. Just wanted to share some information about this problem
1. If your program doesnt work on test #4, than probably the problem is - you "travel" only from the top left corner, but you should "travel" from the lower right corner also. (probably the reason why you should do this is that the labyrinth may be unfinished - sometimes the two ends of it are not connected)
2. If your program doesnt work on test #5 you can find on timustests.lx.ro
Hope it will help somebody
Re: Some info about this problem
Posted by Ivanov Alexander 23 Jun 2007 17:10
Thank you
Re: Some info about this problem
Posted by Javran 15 Oct 2007 16:24
just work like this:
floodfill(1,1);
floodfill(n,n);
.....
......
and i got AC ^_^
Re: Some info about this problem
Posted by evjava 4 Nov 2009 00:04
Thank you for site