After fiddling with numbers for too long, Mr. DeMello has decided to work with spooky arrays! However, he is not very good with them; he has had a question on his mind for a while but cannot solve it, so he asks you for help:
Given an array, find the number of valid solutions for
, where are strictly increasing .
Can you help him?
Constraints
For all subtasks:
Subtask 1 [10%]
Subtask 2 [20%]
Subtask 3 [70%]
Input Specification
The first line will contain
The second line will contain
Output Specification
Output the number of valid solutions to the given equation
Sample Input
Copy
8
1 1 2 3 1 1 2 3
Sample Output
Copy
4
Explanation for Sample Output
The valid solutions are
Note that the indices are 1-indexed.
Comments