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

Обсуждение задачи 1164. Fillword

How to solve this kind of problems???(puzzles)
Послано Miguel Angel 14 дек 2001 03:33
I use a recursive algorithm, but get TIME LIMIT EXCED.
Re: How to solve this kind of problems???(puzzles)
Послано I have answers to all your questions :) 15 дек 2001 09:20
I think this problem is very easy :)
U don't need to find out the sequence of cells of each word
Then how to solve?
Послано Li, Yi 15 дек 2001 09:32
Re: Then how to solve?
Послано I have answers to all your questions :) 15 дек 2001 09:39
if a[x] is the number of letter x on the grid
   b[x] is the number of letter x in all the words
then the number of letter x in the hidden word is a[x] - b[x]
Re: Then how to solve?
Послано lilith 12 окт 2004 07:27
Thanks a lot, it helps me to solve this problem without my stupid idea...