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
karthik1997: 2015-07-11 13:31:48

ac in 1st go :D
but did it in 1.3s
didn't use any algo
1.use array of 5000000 size
2.if str is not found then
input 2 blank lines if it is starting test case
input 1 blank line if it is middle testcase
because after every output we used a blank line
3.use while(scanf("%ld",&n)!=EOF) ) and scan the other strings after this in loop

Rydel Dcosta: 2015-06-30 03:13:03

easy implementation of Z algorithm

manolismi: 2015-06-23 10:19:11

A char array with length 5,000,000 for needle and hay is enough.
For C/C++ use !feof(stdin) as a terminating condition

i_am_looser: 2015-06-13 10:52:21

After KMP try to solve it using hashing it will be fun ; )

---@@@----: 2015-06-05 09:07:13

Similar to PATTERN FIND..... !!!

Varun Gambhir: 2015-06-04 16:19:44

0.25 seconds using Rabin Karp!

Abhinandan Agarwal: 2015-05-27 05:24:08

0.33s with Rabin Karp and 0.07s with Knuth Morris Pratt. How to do it in 0.00s ??

And the Z algo gave 0.10s

Last edit: 2015-05-30 21:30:22
shuks: 2015-05-04 18:54:32

Can't do with KMP. So used Z-algo :D

Sebastian Toton: 2015-04-15 14:41:09

KMP algorithm :)

the_wizard991: 2015-04-08 11:48:50

How can we know the number of inputs?


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