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

Обсуждение задачи 1363. Полутона

some interersting facts
Послано Dmitry "Logam" Kobelev [TSOGU] 4 авг 2008 23:09
while solving this problem I realized that changing the direction of moving led to the new answer.

for(int i = 1; i <= n; i++)
for(int j = 1; j <= m; j++)
{...some code...}
It is WA3

for(int i = 1; i <= m; i++)
for(int j = 1; j <= n; j++)
{...some code...}
It is WA25

for(int i = n; i >= 1; i--)
for(int j = m; j >= 1; j--)
{...some code...}
It is also WA25

for(int i = m; i >= 1; i--)
for(int j = n; j >= 1; j--)
{...some code...}
It is AC.

So, if you have wa25 or wa3 you may try to change indexe's direction )
Re: some interersting facts
Послано Denis Koshman 7 авг 2008 17:07
This means weak tests. But I wonder if there is a test which does not give result with all 4 directions.