#P4702. Mike and Friends
Mike and Friends
Mike and Friends
题面翻译
给定 个字符串 。
次询问 在 中出现了多少次。
,。
题目描述
What-The-Fatherland is a strange country! All phone numbers there are strings consisting of lowercase English letters. What is double strange that a phone number can be associated with several bears!
In that country there is a rock band called CF consisting of bears (including Mike) numbered from to .
Phone number of -th member of CF is . May 17th is a holiday named Phone Calls day. In the last Phone Calls day, everyone called all the numbers that are substrings of his/her number (one may call some number several times). In particular, everyone called himself (that was really strange country).
Denote as the number of times that -th member of CF called the -th member of CF.
The geek Mike has questions that he wants to ask you. In each question he gives you numbers and and you should tell him the number
输入格式
The first line of input contains integers and ( and ).
The next lines contain the phone numbers, -th line contains a string consisting of lowercase English letters ().
The next lines contain the information about the questions, each of them contains integers and ( and ).
输出格式
Print the answer for each question in a separate line.
样例 #1
样例输入 #1
5 5
a
ab
abab
ababab
b
1 5 1
3 5 1
1 5 2
1 5 3
1 4 5
样例输出 #1
7
5
6
3
6