Fun with strings

3

2 votes
Arrays, LCP, Medium, String Manipulation, Suffix tree
Problem

You are given a string S=S0S1Sn1 of length n.
Find the sum of length of LCP(Longest Common Prefix) over all the n2(n+1)24 ordered pairs of its substrings.
Formally, say the substring of S starting at index i and ending at index j is represented by Sij, and let L(A,B) represent the length of LCP of strings A and B.
Then compute the value of :

n1i=0n1j=in1k=0n1l=kL(Sij,Skl)

As this value may be very large, print it modulo 10^9 + 7

Input
The first line contains T, the number of test cases. It is followed by 2T lines, describing the strings in the testcases . Each string is described by two lines.
The first line contains n, length of the string S.
Second line contains the string S consisting of lowercase english alphabets only.

Output
Print T lines containing the sum of lengths of lcp over all ordered pairs of substrings of S modulo 10^9+7 for the T testcases, each on a new line.

Constraints

  • T5
  • S consists of lowercase english alphabets only.
  • (25 points) : n103
  • (75 points) : n105
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

When S=ab, the answer equals
L(a,a)+L(a,ab)+L(a,b)+L(ab,a)+L(ab,ab)+L(ab,b)+L(b,a)+L(b,ab)+L(b,b)

=1+1+0+1+2+0+0+0+1=6

Editor Image

?