DMOPC '17 Contest 5 P2 - Mimi and Binary

View as PDF

Submit solution


Points: 5 (partial)
Time limit: 2.0s
Memory limit: 64M

Author:
Problem type

Mimi is playing with a string S, consisting of only 0s and 1s. Her little sister comes along and being very curious, asks Q questions about the binary string:

If we consider the substring starting from the xith index, what is the leftmost index such that there are yi occurrences of the digit zi?

Help Mimi write a program to answer these queries.

Constraints

Let |S| denote the length of string S.

For all subtasks:

1xi,yi|S|

0zi1

Subtask 1 [20%]

1|S|,Q1000

Subtask 2 [80%]

1|S|,Q200000

Input Specification

The first line will contain the string S.
The next line of input will contain a single integer, Q.
The next Q lines will each contain three space-separated integers: xi, yi, and zi, the ith query.

Output Specification

The output should contain Q integers, each on a new line. The ith integer should be either the leftmost index such that there are yi occurrences of the digit zi, or -1 if no such index exists.

Sample Input

Copy
010100
3
1 2 0
1 2 1
1 3 1

Sample Output

Copy
3
4
-1

Comments


  • 5
    Medi  commented on Nov. 14, 2018, 6:51 a.m.

    Could someone explain the sample input and output?


    • 6
      kingW3  commented on Nov. 14, 2018, 1:20 p.m. edited

      For the first query the substring 010 is the first to have 2 occurrences of 0 so the answer is 3, the second query the substring 0101 is the first to have 2 occurrences of 1 hence the answer is 4 and for the last there is no substring containing 3 ones starting from first char.


  • 64
    echofox  commented on March 28, 2018, 12:28 a.m. edited

    don't you just hate it when you're doing something and your younger sibling comes over and asks "if we consider the substring starting from the xith index, what is the leftmost index such that there are yi occurrences of the digit zi?"


    • 12
      GeeTranzit  commented on Jan. 27, 2020, 2:45 p.m.

      relatable