题库练习 INOI Final Contests
← 上一题 下一题 →

A13949 | INOI Final Contests

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Today is the final contest of INOI (Iranian National Olympiad in Informatics). The contest room is a row with $n$ computers. All computers are numbered with integers from $1$ to $n$ from left to right. There are $m$ participants, numbered with integers from $1$ to $m$ .

We have an array $a$ of length $m$ where $a_{i}$ ( $1 \leq a_i \leq n$ ) is the computer behind which the $i$ -th participant wants to sit.

Also, we have another array $b$ of length $m$ consisting of characters 'L' and 'R'. $b_i$ is the side from which the $i$ -th participant enters the room. 'L' means the participant enters from the left of computer $1$ and goes from left to right, and 'R' means the participant enters from the right of computer $n$ and goes from right to left.

The participants in the order from $1$ to $m$ enter the room one by one. The $i$ -th of them enters the contest room in the direction $b_i$ and goes to sit behind the $a_i$ -th computer. If it is occupied he keeps walking in his direction until he reaches the first unoccupied computer. After that, he sits behind it. If he doesn't find any computer he gets upset and gives up on the contest.

The madness of the $i$ -th participant is the distance between his assigned computer ( $a_i$ ) and the computer he ends up sitting behind. The distance between computers $i$ and $j$ is equal to $|i - j|$ .

The values in the array $a$ can be equal. There exist $n^m \cdot 2^m$ possible pairs of arrays $(a, b)$ .

Consider all pairs of arrays $(a, b)$ such that no person becomes upset. For each of them let's calculate the sum of participants madnesses. Find the sum of all these values.

You will be given some prime modulo $p$ . Find this sum by modulo $p$ .

输入格式

The only line contains three integers $n$ , $m$ , $p$ ( $1 \leq m \leq n \leq 500, 10^8 \leq p \leq 10 ^ 9 + 9$ ).

It is guaranteed, that the number $p$ is prime.

输出格式

Print only one integer — the required sum by modulo $p$ .

输入输出样例

输入 #1
3 1 1000000007
输出 #1
0
输入 #2
2 2 1000000009
输出 #2
4
输入 #3
3 2 998244353
输出 #3
8
输入 #4
20 10 1000000009
输出 #4
352081045
C++ 编辑器
输入
输出