

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
すぬけくんは, の順列 と整数 をもらいました. そこですぬけくんは, の隣接する二項をswapすることを繰り返して,以下の条件が満たされるようにしました.
- それぞれの について, , を満たす が高々 個である.
ここで,すぬけくんは最小の操作回数でこの条件を達成しました.
すべての操作が終わったあと,すぬけくんは元の順列を忘れてしまいました. 操作後の順列 が与えられるので,元の順列 としてあり得るものが何通りあるかを で割った余りを求めてください.
制約
- ()
- それぞれの について, , を満たす が高々 個である
- 入力される値はすべて整数である
入力
入力は以下の形式で標準入力から与えられる.
出力
答えを出力せよ.
入力例 1Copy
3 1 3 1 2
出力例 1Copy
2
として考えられるのは以下の 通りです.
- : 最小の操作回数は 回です.操作後の順列は に一致します.
- : 最小の操作回数は 回です. と をswapすることで, となり,これは条件を満たします.操作後の順列は に一致します.
入力例 2Copy
4 3 4 3 2 1
出力例 2Copy
1
入力例 3Copy
5 2 4 2 1 5 3
出力例 3Copy
3
Score : points
Problem Statement
Snuke received a permutation of and an integer . He did some number of swaps of two adjacent elements in so that the following condition would be satisfied.
- For each , there are at most indices such that and .
Here, he did the minimum number of swaps needed to achieve this condition.
Afterward, he has forgotten the original permutation he received. Given the permutation after the swaps, find the number, modulo , of permutations that the original permutation could be.
Constraints
- ()
- For each , there is at most indices such that and .
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
3 1 3 1 2
Sample Output 1Copy
2
could be one of the following two permutations.
- : The minimum number of swaps needed is . After zero swaps, the permutation is equal to .
- : The minimum number of swaps needed is : swapping and results in , which satisfies the condition and is equal to .
Sample Input 2Copy
4 3 4 3 2 1
Sample Output 2Copy
1
Sample Input 3Copy
5 2 4 2 1 5 3
Sample Output 3Copy
3