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

Обсуждение задачи 1298. Конь

It's strange. My prog runs faster when n=8 than when n=7.
Послано Maigo Akisame (maigoakisame@yahoo.com.cn) 2 окт 2004 06:55
Re: It's strange. My prog runs faster when n=8 than when n=7.
Послано ER 5 май 2014 11:22
If you use a simple depth first search, your run time will depend on the order in which you examine the possible moves.

For example, always examining the moves in this order yields a TLE: (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1), (-2,1), (-2,-1).

To get the fastest solutions you'll want to adapt the search order at each node in the search tree, but you can get an AC  with a static search order.