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

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