NHAY - A Needle in the Haystack

no tags 

Write a program that finds all occurences of a given pattern in a given input string. This is often referred to as finding a needle in a haystack.

The program has to detect all occurences of the needle in the haystack. It should take the needle and the haystack as input, and output the positions of each occurence, as shown below. The suggested implementation is the KMP algorithm, but this is not a requirement. However, a naive approach will probably exceed the time limit, whereas other algorithms are more complicated... The choice is yours.

Input

The input consists of a number of test cases. Each test case is composed of three lines, containing:

  • the length of the needle,
  • the needle itself,
  • the haystack.

The length of the needle is only limited by the memory available to your program, so do not make any assumptions - instead, read the length and allocate memory as needed. The haystack is not limited in size, which implies that your program should not read the whole haystack at once. The KMP algorithm is stream-based, i.e. it processes the haystack character by character, so this is not a problem.

The test cases come one after another, each occupying three lines, with no additional space or line breaks in between.

Output

For each test case your program should output all positions of the needle's occurences within the haystack. If a match is found, the output should contain the position of the first character of the match. Characters in the haystack are numbered starting with zero.

For a given test case, the positions output should be sorted in ascending order, and each of these should be printed in a separate line. For two different test cases, the positions should be separated by an empty line.

Example

Sample input:
2
na
banananobano
6
foobar
foo
9
foobarfoo
barfoobarfoobarfoobarfoobarfoo
Sample output:
2
4

3
9
15
21

Note the double empty line in the output, which means that no match was found for the second test case.

Warning: large Input/Output data, be careful with certain languages

hide comments
rehank478: 2020-07-29 14:45:19

try this test case:
Input:
8
abcababd
abcababcababde

Output:
5

imposter_1729: 2020-07-24 10:37:17

can be solved by naive method, but try doing it with kmp or rolling hash function

mujtaba1747: 2020-07-02 10:59:56

Can be solved easily using Hashing also

coolboy7: 2020-06-23 19:05:06

can i read the whole haystack at once??

mehul007: 2020-06-08 09:11:02

when does i have to stop taking inputs?

triplecoma___3: 2020-06-07 13:48:23

Rabin karp basic algo structure

maskmanlucifer: 2020-05-26 10:19:32

Simple Rolling hash.

reyad: 2020-05-23 19:00:00

interestingly taking haystack size 2 * 10^6 was enough! so, the following line does not apply:
"The haystack is not limited in size, which implies that your program should not read the whole haystack at once."

mill_2611: 2020-05-12 19:20:03

how many test cases to be considered at once ???

father3301: 2020-03-11 09:06:37

when i used while(scanf("%d",&n)) it gives TLE
but when used while(cin>>n) it got AC
does anybody happen to know the reason?

Last edit: 2020-03-11 09:06:55

Added by:mima
Date:2004-06-03
Time limit:5s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All