#P13862. [SWERC 2020] Mentors

[SWERC 2020] Mentors

题目描述

:::align{center}

:::

The Happy Tree Friends have gathered for their annual meeting, in which they take their most important decisions for the year to come. This year, they will set up a mentoring program to help each other take better care of their loved ones. This programme follows a tree-like hierarchical structure as follows.

The NN members of the programme are ranked from 11 to NN (each rank is assigned once), by increasing seniority. For the mentorship programme to be efficient, a person ranked AA can mentor a person ranked BB only if A>BA > B. The most senior Happy Tree Friend can have no mentor, but everybody else has a unique mentor. Conversely, everybody is allowed to mentor from zero to two people.

However, Mr. Pickles, who was assigned the rank RR, plans to take a sabbatical this year. Thus, he will not be able to mentor anybody, and the Happy Tree Friends should choose their hierarchical structure among those trees in which the node labelled RR is a leaf.

Aiming to help his friends to choose such a tree, Mr. Pickles decides to first count how many trees would match his constraint. Unfortunately, he stopped school early, and thus did not learn how to manipulate integers of arbitrary size. Instead, he counts modulo MM, where MM is a fixed positive integer: this is already enough for most purposes in life.

What is the number LL that Mr. Pickles will obtain after counting all suitable trees?

输入格式

The input consists of a single line, with three space-separated integers: RR, NN, MM, in that order.

Limits

  • 1RN20211 \leqslant R \leqslant N \leqslant 2021
  • 1M10000000001 \leqslant M \leqslant 1\,000\,000\,000

输出格式

The output should contain a single line with the single integer LL, which is the number of tree-like hierarchical structures that would match Mr. Pickles' constraints, counted modulo MM.

2 4 2
1
2 4 3
0

提示

Sample Explanation 1

The node with label R=2R = 2 is a leaf in exactly 33 of five trees listed below, and thus there are 33 trees that match Mr. Pickles' constraints. The only meaningful feature of our trees is parenthood, which represents mentorship relations, and thus there is no notion of left child or right child of a node. Mr. Pickles counts modulo M=2M = 2, and therefore he ends up with the number L=3 (mod 2)=1L = 3~(\mathrm{mod~}2) = 1.

:::align{center}

:::

Sample Explanation 2

Mr. Pickles now counts modulo M=3M = 3, and thus he ends up with the number L=3 (mod 3)=0L = 3~(\mathrm{mod~}3) = 0.