devops 信创在数字经济时代提升企业竞争力的关键策略
653
2022-11-09
codeforces 204e Little Elephant and Strings
The Little Elephant loves strings very much.
He has an array a from n strings, consisting of lowercase English letters. Let’s number the elements of the array from 1 to n, then let’s denote the element number i as ai. For each string ai (1 ≤ i ≤ n) the Little Elephant wants to find the number of pairs of integers l and r (1 ≤ l ≤ r ≤ |ai|) such that substring ai[l… r] is a substring to at least k strings from array a (including the i-th string).
Help the Little Elephant solve this problem.
If you are not familiar with the basic notation in string problems, you can find the corresponding definitions in the notes. Input
The first line contains two space-separated integers — n and k (1 ≤ n, k ≤ 105). Next n lines contain array a. The i-th line contains a non-empty string ai, consisting of lowercase English letter. The total length of all strings ai does not exceed 105. Output
On a single line print n space-separated integers — the i-th number is the answer for string ai.
Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier. Examples Input
3 1 abc a ab
Output
6 1 3
Input
7 4 rubik furik abab baba aaabbbababa abababababa zero
Output
1 0 9 9 21 30 0
Note
Let’s assume that you are given string a = a1a2… a|a|, then let’s denote the string’s length as |a| and the string’s i-th character as ai.
A substring a[l… r] (1 ≤ l ≤ r ≤ |a|) of string a is string alal + 1… ar.
String a is a substring of string b, if there exists such pair of integers l and r (1 ≤ l ≤ r ≤ |b|), that b[l… r] = a.
大概是原题bzoj3473N 220000int st[N][20],height[N],rank[N<<1],rank1[N],s[N],L[N],Log[N],n,kk,cnt[N],bl[N>>1],sa[N],count[N],tmp[N];char a[N];inline int lcp(int x,int y){ x++;int t=Log[y-x+1]; return std::min(st[x][t],st[y-(1<
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~