Ex - Beautiful Subsequences
Editorial
/


Time Limit: 6 sec / Memory Limit: 1024 MB
配点 : 点
問題文
を並び替えて得られる長さ の順列 、及び整数 が与えられます。
以下の条件を全て満たす整数組 の個数を求めてください。
制約
- は を並び替えて得られる順列
- 入力は全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
Copy
4 1 1 4 2 3
出力例 1Copy
Copy
9
条件を満たす組 は以下の 個です。
は 、 となるので、条件を満たしません。
入力例 2Copy
Copy
2 0 2 1
出力例 2Copy
Copy
3
入力例 3Copy
Copy
10 3 3 7 10 1 9 5 4 8 6 2
出力例 3Copy
Copy
37
Score : points
Problem Statement
You are given a permutation of , and an integer .
Find the number of pairs of integers that satisfy all of the following conditions:
Constraints
- is a permutation of .
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
Copy
4 1 1 4 2 3
Sample Output 1Copy
Copy
9
The following nine pairs satisfy the conditions.
For , we have and , not satisfying the condition.
Sample Input 2Copy
Copy
2 0 2 1
Sample Output 2Copy
Copy
3
Sample Input 3Copy
Copy
10 3 3 7 10 1 9 5 4 8 6 2
Sample Output 3Copy
Copy
37