Hide

Problem C
Another Substring Query Problem

You are given a string s and several queries.

Each query consists of a string t and an integer k. For each query, determine the kth position in s where a substring matching t starts. If t occurs fewer than k times in s, print 1.

Input

The first line of input contains a single string s (1|s|2105), which is the queriable string. It will consist only of lower-case letters.

The next line of input contains a single integer q (1q2105), which is the number of queries that follow.

Each of the next q lines contains a string t (1|t|) and an integer k (1k|s|). This represents a query for the kth occurrence of t in s. The string t will consist only of lower-case letters. The sum of all |t|’s will be 2105

Output

Output a single integer, which is the position of the start of the kth occurrence of t in s, or 1 if t occurs fewer than k times in s. The first character in s is at position 1.

Sample Input 1 Sample Output 1
abacabadabacaba
4
a 7
e 3
bac 2
abada 1
13
-1
10
5
Hide

Please log in to submit a solution to this problem

Log in