

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
個の石が一列に並んでいて、左から 個目の石は色 で塗られています。
すぬけ君は、以下の操作を 回以上の任意の回数行います。
- 同じ色で塗られている つの石を選ぶ。それらの石の間に置かれている石をすべて、選んだ石と同じ色で塗りかえる。
最終的な石の色の列としてありうるものの個数を で割ったあまりを求めてください。
制約
- 入力はすべて整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
最終的な石の色の列としてありうるものの個数を で割ったあまりを出力せよ。
入力例 1Copy
5 1 2 1 2 2
出力例 1Copy
3
以下の 通りの石の色の列を作ることができます。
- 操作を行わないことで、
- 番目の石を選んで操作を行うことで、
- 番目の石を選んで操作を行うことで、
入力例 2Copy
6 4 2 5 4 2 4
出力例 2Copy
5
入力例 3Copy
7 1 3 1 2 3 3 2
出力例 3Copy
5
Score : points
Problem Statement
There are stones arranged in a row. The -th stone from the left is painted in the color .
Snuke will perform the following operation zero or more times:
- Choose two stones painted in the same color. Repaint all the stones between them, with the color of the chosen stones.
Find the number of possible final sequences of colors of the stones, modulo .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of possible final sequences of colors of the stones, modulo .
Sample Input 1Copy
5 1 2 1 2 2
Sample Output 1Copy
3
We can make three sequences of colors of stones, as follows:
- , by doing nothing.
- , by choosing the first and third stones to perform the operation.
- , by choosing the second and fourth stones to perform the operation.
Sample Input 2Copy
6 4 2 5 4 2 4
Sample Output 2Copy
5
Sample Input 3Copy
7 1 3 1 2 3 3 2
Sample Output 3Copy
5