DMPG '19 G6 - Pairs

View as PDF

Submit solution


Points: 20 (partial)
Time limit: 1.0s
Memory limit: 256M

Author:
Problem type

A string S of length N is given. Alice has written all (N+12)2 ordered pairs (s,t) of substrings of S. For each pair, she computes the length of the longest common prefix of the two substrings. How many times does she write down each number from 1 to N? As these numbers may be large, please output them modulo 109+7.

Constraints

S contains only lowercase English letters.

Subtask 1 [10%]

1N100

Subtask 2 [20%]

1N500

Subtask 3 [20%]

1N2000

Subtask 4 [50%]

1N200000

Input Specification

The first line contains a single integer N.
The next line contains the string S.

Output Specification

Output N+1 lines. On the ith line, print the number of pairs of substrings which have a longest common prefix of length i1, modulo 109+7.

Sample Input 1

Copy
3
ccc

Sample Output 1

Copy
0
27
8
1

Sample Input 2

Copy
4
dmpg

Sample Output 2

Copy
70
16
9
4
1

Comments

There are no comments at the moment.