atcoder#ARC077B. [ABC066D] 11

[ABC066D] 11

Score : 600600 points

Problem Statement

You are given an integer sequence of length n+1n+1, a1,a2,...,an+1a_1,a_2,...,a_{n+1}, which consists of the nn integers 1,...,n1,...,n. It is known that each of the nn integers 1,...,n1,...,n appears at least once in this sequence.

For each integer k=1,...,n+1k=1,...,n+1, find the number of the different subsequences (not necessarily contiguous) of the given sequence with length kk, modulo 109+710^9+7.

Notes

  • If the contents of two subsequences are the same, they are not separately counted even if they originate from different positions in the original sequence.
  • A subsequence of a sequence aa with length kk is a sequence obtained by selecting kk of the elements of aa and arranging them without changing their relative order. For example, the sequences 1,3,51,3,5 and 1,2,31,2,3 are subsequences of 1,2,3,4,51,2,3,4,5, while 3,1,23,1,2 and 1,10,1001,10,100 are not.

Constraints

  • 1n1051 \leq n \leq 10^5
  • 1ain1 \leq a_i \leq n
  • Each of the integers 1,...,n1,...,n appears in the sequence.
  • nn and aia_i are integers.

Input

Input is given from Standard Input in the following format:

nn

a1a_1 a2a_2 ... an+1a_{n+1}

Output

Print n+1n+1 lines. The kk-th line should contain the number of the different subsequences of the given sequence with length kk, modulo 109+710^9+7.

3
1 2 1 3
3
5
4
1

There are three subsequences with length 11: 11 and 22 and 33.

There are five subsequences with length 22: 1,11,1 and 1,21,2 and 1,31,3 and 2,12,1 and 2,32,3.

There are four subsequences with length 33: 1,1,31,1,3 and 1,2,11,2,1 and 1,2,31,2,3 and 2,1,32,1,3.

There is one subsequence with length 44: 1,2,1,31,2,1,3.

1
1 1
1
1

There is one subsequence with length 11: 11.

There is one subsequence with length 22: 1,11,1.

32
29 19 7 10 26 32 27 4 11 20 2 8 16 23 5 14 6 12 17 22 18 30 28 24 15 1 25 3 13 21 19 31 9
32
525
5453
40919
237336
1107568
4272048
13884156
38567100
92561040
193536720
354817320
573166440
818809200
37158313
166803103
166803103
37158313
818809200
573166440
354817320
193536720
92561040
38567100
13884156
4272048
1107568
237336
40920
5456
528
33
1

Be sure to print the numbers modulo 109+710^9+7.