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

Обсуждение задачи 1270. Уникуб

1270Unicube- "cube" with tricks?
Послано svr 27 авг 2007 13:34
1) What coordinates of cubes for?

They may be used for first trick in tests:
placing two cubes in the same position.

2) Are there may be another tricks with coordinates data.

3) Besides unclear using of coordinates, the problem
is standard problen on groop of rotations of cube in space with 24 elems and searchig after maximal matching.
Re: 1270Unicube- "cube" with tricks?
Послано svr 27 авг 2007 14:23
Clearness is taken.
1. Coordinates have no any importance.
2. Matching program may be standard.
3. Groop of rotations must be calculated
absolutely exactly of caurse.
For example I used the next matrix:
/ 1-left,2-right,3-top,4-forward,5-bottom,6- back
int A[24][6]={
1,2,3,4,5,6,
 1,2,4,5,6,3,
1,2,5,6,3,4,
1,2,6,3,4,5,
6,4,3,1,5,2,
2,1,3,6,5,4,
4,6,3,2,5,1,
3,5,2,4,1,6,
2,1,5,4,3,6,
5,3,1,4,2,6,
4,6,5,1,3,2,
6,4,5,2,3,1,
2,1,4,3,6,5,
2,1,6,5,4,3,
3,5,1,6,2,4,
5,3,2,6,1,4,
5,3,6,1,4,2,
4,6,2,5,1,3,
4,6,1,3,2,5,
3,5,4,1,6,2,
3,5,6,2,4,1,
6,4,1,5,2,3,
5,3,4,2,6,1,
6,4,2,3,1,5};
Re: 1270Unicube- "cube" with tricks?
Послано Chmel_Tolstiy 27 июн 2008 19:15
I don't see why you need this matrix. it's too easy to generate.