ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1033. Лабиринт

Some info about this problem
Послано Olzhas aka Whale2dy 1 апр 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
Послано Ivanov Alexander 23 июн 2007 17:10
Thank you
Re: Some info about this problem
Послано Javran 15 окт 2007 16:24
just work like this:
floodfill(1,1);
floodfill(n,n);
.....
......
and i got AC ^_^
Re: Some info about this problem
Послано evjava 4 ноя 2009 00:04
Thank you for site