시간 제한메모리 제한제출정답맞힌 사람정답 비율
0.3 초 512 MB89252432.877%

문제

Enzo recently traveled to the city of Montevideo, where he saw a big sign with the name of the city. He decided to take pictures of the sign to make a collage and send it to his friend Demonio. Enzo wants to form the name of his friend by taking one or several pictures of sections of the sign. For example, with the string “MONTEVIDEO”, he might form the name of his friend by putting together “DE-MON-I-O”, using four pictures to form the entire name. It is easy to show that the result cannot be achieved with fewer pictures.

You will be given the name of a city and a list of friends’ names. Return the minimum number of pictures needed to form the name of each friend. When forming the names, pictures cannot be rotated, reflected or modified in any way.

입력

The first line contains a string C indicating the name of the city. The second line contains a positive integer N representing the number of friends. Each of the following N lines contains a string indicating the name of a friend. All strings are non-empty and consist only of uppercase letters. The sum of the lengths of all strings is at most 2 × 105.

출력

Output N lines, each line with an integer indicating the minimum number of needed pictures to form the corresponding name in the input, or the value “-1” if it is not possible to generate the name.

예제 입력 1

MONTEVIDEO
4
DEMONIO
MONTE
EDIT
WON

예제 출력 1

4
1
4
-1

예제 입력 2

SANTIAGO
3
TITA
SANTIAGO
NAS

예제 출력 2

3
1
3

출처

ICPC > Regionals > Latin America > Latin America Regional Contests > Latin America Regional Contests 2019 G번

  • 문제를 만든 사람: Nicolás Álvarez