結果

問題 No.2975 単調増加部分積
ユーザー SSRSSSRS
提出日時 2024-11-29 22:26:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,093 bytes
コンパイル時間 3,106 ms
コンパイル使用メモリ 234,324 KB
実行使用メモリ 724,352 KB
最終ジャッジ日時 2024-11-29 22:26:44
合計ジャッジ時間 19,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 25 ms
8,064 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 44 ms
11,520 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 7 ms
5,248 KB
testcase_18 AC 41 ms
11,264 KB
testcase_19 AC 392 ms
78,848 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M, P;
  cin >> N >> M >> P;
  vector<vector<long long>> dp(M + 1, vector<long long>(N + 1, 0));
  dp[0][0] = 1;
  for (int i = 0; i < M; i++){
    long long s = 0;
    for (int j = 1; j <= N; j++){
      s += dp[i][j - 1];
      s %= P;
      dp[i + 1][j] = s * j % P;
    }
  }
  vector<long long> inv(N + 1);
  inv[1] = 1;
  for (int i = 2; i <= N; i++){
    inv[i] = P - inv[P % i] * (P / i) % P;
  }
  vector<long long> fact(N + 1);
  vector<long long> finv(N + 1);
  fact[0] = 1;
  finv[0] = 1;
  for (int i = 1; i <= N; i++){
    fact[i] = fact[i - 1] * i % P;
    finv[i] = finv[i - 1] * inv[i] % P;
  }
  auto binom = [&](int n, int k){
    return fact[n] * finv[k] % P * finv[n - k] % P;
  };
  long long S = 0;
  for (int i = 1; i <= M; i++){
    long long sum = 0;
    for (int j = 0; j <= N; j++){
      sum += dp[i][j];
    }
    sum %= P;
    S += sum * binom(M, i) % P * fact[N - i] % P * finv[N - M] % P;
    S %= P;
  }
  S *= fact[N - M] * finv[N] % P;
  S %= P;
  cout << S << endl;
}
0