COCI '11 Contest 4 #6 Kriptogram

View as PDF

Submit solution


Points: 15 (partial)
Time limit: 1.0s
Memory limit: 64M

Problem type

Mirko intercepted an encrypted message. Mirko knows only that specific sentence was part of the original message. Find the first occurrence of this sentence inside the encrypted message.

Message is encrypted by substituting every word from the original message with some (possibly the same one) word. If some word appears more than once in the original message, it will be substituted using the same word on each appearance. No two different words will have the same substitute word.

Words are space separated sequences of lowercase letters. Sentence is a sequence of consecutive words.

Input Specification

The first line of input contains the encrypted message. This message will not contain more than 10^6 characters. There will be exactly one whitespace between adjacent words, and end of the line will be marked with $. Trailing $ is not considered to be a part of message.

The following line contains the sentence that appears in the original message, and which we must find in the encrypted message. This sentence won't be longer than 10^6 characters, and will follow the same format as described above.

Output Specification

The first and only line of output should contain the index in the encrypted message of the first word in the first occurrence of given original message sentence.

Solution will always exist.

Sample Input 1

a a a b c d a b c $
x y $

Sample Output 1

3

Sample Input 2

xyz abc abc xyz $
abc abc $

Sample Output 2

2

Sample Input 3

a b c x c z z a b c $
prvi dr prvi tr tr x $

Sample Output 3

3

Comments

There are no comments at the moment.