QOJ.ac

QOJ

Time Limit: 3 s Memory Limit: 32 MB Total points: 100

#13177. Permutation

الإحصائيات

Multiset is a mathematical object similar to a set, but each member of a multiset may have more than one membership. Just as with any set, the members of a multiset can be ordered in many ways. We call each such ordering a permutation of the multiset. For example, among the permutations of the multiset {1,1,2,3,3,3,7,8} there are (2,3,1,3,3,7,1,8) and (8,7,3,3,3,2,1,1).

We will say that one permutation of a given multiset is smaller (in lexicographic order) than another permutation, if on the first position that does not match the first permutation has a smaller element than the other one. All permutations of a given multiset can be numbered (starting from one) in an increasing order.

Write a programme that

  • reads the description of a permutation of a multiset and a positive integer $m$ from the standard input,
  • determines the remainder of the rank of that permutation in the lexicographic ordering modulo $m$,
  • writes out the result to the standard output.

Input

The first line of the standard input holds two integers $n$ and $m$ ($1 ≤ n ≤ 300\,000$, $2 ≤ m ≤ 1\,000\,000\,000$), separated by a single space. These denote, respectively, the cardinality of the multiset and ... the number $m$. The second line of the standard input contains $n$ positive integers $a_i$ ($1 ≤ a_i ≤ 300\,000$), separated by single spaces and denoting successive elements of the multiset permutation.

Output

The first and only line of the standard output is to hold one integer, the remainder modulo of the rank of the input permutation in the lexicographic ordering.

Example

Input

4 1000
2 1 10 2

Output

5

All the permutations smaller (with respect to lexicographic order) than the one given are: (1,2,2,10), (1,2,10,2), (1,10,2,2) and (2,1,2,10).

Discussions

About Discussions

The discussion section is only for posting: Editorials, General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues. Submitting multiple issues may cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.