1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <bits/stdc++.h>

using namespace std;

struct TestCase
{
  int m, n, p;
};

TestCase read_test_case();
void solve_test_case(const TestCase&);

int main()
{
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  solve_test_case(read_test_case());
}

TestCase read_test_case()
{
  TestCase test_case;
  cin >> test_case.n >> test_case.m >> test_case.p;
  return test_case;
}

int paint(int l, int r, int n, int m, int p)
{
  if (n == 0) return 1;
  int s = 0;
  for (int l1 = 0; l1 <= r; l1++)
  {
    for (int r1 = max(l, l1); r1 < m; r1++)
    {
      s = (s + paint(l1, r1, n - 1, m, p)) % p;
    }
  }
  return s;
}

void solve_test_case(const TestCase& test_case)
{
  cout << paint(0, test_case.m - 1, test_case.n, test_case.m, test_case.p)
       << "\n";
}