結果

問題 No.269 見栄っ張りの募金活動
ユーザー 千代裕介千代裕介
提出日時 2020-05-14 03:50:11
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 12 ms
11,392 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 14 ms
12,020 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 10 ms
10,112 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 7 ms
7,168 KB
testcase_14 AC 11 ms
12,032 KB
testcase_15 AC 7 ms
8,064 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 8 ms
7,424 KB
testcase_19 AC 5 ms
6,016 KB
testcase_20 AC 5 ms
6,144 KB
testcase_21 AC 9 ms
10,624 KB
testcase_22 AC 5 ms
5,632 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 7 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

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