結果

問題 No.269 見栄っ張りの募金活動
ユーザー 千代裕介千代裕介
提出日時 2020-05-14 03:50:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 14 ms / 5,000 ms
コード長 826 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 165,912 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-09-14 15:50:23
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

// 5/13
// 分割数 類題
// 見栄っ張りの募金活動
#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)
using namespace std;
using ll = long long;
using P = pair<int, int>;
using Graph = vector<vector<int>>;

int dp[20010][110];  // dp[i][k] = 合計i円をj人で分けるパターン。
const int MOD = 1000000007;

int main() {
    int N, S, K;
    cin >> N >> S >> K;

    S -= K * N * (N - 1) / 2;

    if (S < 0) {
        cout << "0" << endl;
        return 0;
    }

    dp[0][0] = 1;

    for (int i = 0; i <= S; i++) {
        for (int j = 1; j <= N; j++) {
            if (i >= j) {
                dp[i][j] = (dp[i - j][j] + dp[i][j - 1]) % MOD;
            } else {
                dp[i][j] = dp[i][j - 1];
            }            
        }
    }

    cout << dp[S][N] << endl;
}
0