#x1054. CF587F Duff is Mad

CF587F Duff is Mad

Duff is Mad

题面翻译

  • 给定 nn 个字符串 s1ns_{1 \dots n}
  • qq 次询问 slrs_{l \dots r}sks_k 中出现了多少次。
  • n,q,i=1nsi105n,q,\sum_{i=1}^n |s_i| \le 10^5

题目描述

Duff is mad at her friends. That's why she sometimes makes Malek to take candy from one of her friends for no reason!

She has n n friends. Her i i -th friend's name is si s_{i} (their names are not necessarily unique). q q times, she asks Malek to take candy from her friends. She's angry, but also she acts with rules. When she wants to ask Malek to take candy from one of her friends, like k k , she chooses two numbers l l and r r and tells Malek to take exactly candies from him/her, where occur(t,s) occur(t,s) is the number of occurrences of string t t in s s .

Malek is not able to calculate how many candies to take in each request from Duff. That's why she asked for your help. Please tell him how many candies to take in each request.

输入格式

The first line of input contains two integers n n and q q ( 1<=n,q<=105 1<=n,q<=10^{5} ).

The next n n lines contain the names. i i -th of them contains an string si s_{i} , consisting of lowercase English letters ().

The next q q lines contain the requests. Each of them contains three integers, l,r l,r and k k (says that Malek should take candies from Duff's k k -th friend).

输出格式

Print the answer to each request in one line.

样例 #1

样例输入 #1

5 5
a
ab
abab
ababab
b
1 5 4
3 5 4
1 5 2
1 5 3
1 4 1

样例输出 #1

12
6
3
7
1