ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1164. Fillword

How to solve this kind of problems???(puzzles)
Posted by Miguel Angel 14 Dec 2001 03:33
I use a recursive algorithm, but get TIME LIMIT EXCED.
Re: How to solve this kind of problems???(puzzles)
Posted by I have answers to all your questions :) 15 Dec 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?
Posted by Li, Yi 15 Dec 2001 09:32
Re: Then how to solve?
Posted by I have answers to all your questions :) 15 Dec 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?
Posted by lilith 12 Oct 2004 07:27
Thanks a lot, it helps me to solve this problem without my stupid idea...