CF235C.Cyclical Quest

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Some days ago, WJMZBMR learned how to answer the query "how many times does a string xx occur in a string ss " quickly by preprocessing the string ss . But now he wants to make it harder.

So he wants to ask "how many consecutive substrings of ss are cyclical isomorphic to a given string xx ". You are given string ss and nn strings xix_{i} , for each string xix_{i} find, how many consecutive substrings of ss are cyclical isomorphic to xix_{i} .

Two strings are called cyclical isomorphic if one can rotate one string to get the other one. 'Rotate' here means 'to take some consecutive chars (maybe none) from the beginning of a string and put them back at the end of the string in the same order'. For example, string "abcde" can be rotated to string "deabc". We can take characters "abc" from the beginning and put them at the end of "de".

输入格式

The first line contains a non-empty string ss . The length of string ss is not greater than 10610^{6} characters.

The second line contains an integer nn ( 1<=n<=1051<=n<=10^{5} ) — the number of queries. Then nn lines follow: the ii -th line contains the string xix_{i} — the string for the ii -th query. The total length of xix_{i} is less than or equal to 10610^{6} characters.

In this problem, strings only consist of lowercase English letters.

输出格式

For each query xix_{i} print a single integer that shows how many consecutive substrings of ss are cyclical isomorphic to xix_{i} . Print the answers to the queries in the order they are given in the input.

输入输出样例

  • 输入#1

    baabaabaaa
    5
    a
    ba
    baa
    aabaa
    aaba
    

    输出#1

    7
    5
    7
    3
    5
    
  • 输入#2

    aabbaa
    3
    aa
    aabb
    abba
    

    输出#2

    2
    3
    3
    
首页