結果

問題 No.1011 Infinite Stairs
ユーザー trineutrontrineutron
提出日時 2020-03-21 00:56:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 205,320 KB
実行使用メモリ 217,728 KB
最終ジャッジ日時 2024-07-17 11:56:09
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 203 ms
144,256 KB
testcase_04 AC 35 ms
27,008 KB
testcase_05 AC 307 ms
217,728 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 43 ms
32,128 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 28 ms
20,996 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 35 ms
26,240 KB
testcase_16 AC 142 ms
102,272 KB
testcase_17 AC 14 ms
11,776 KB
testcase_18 AC 83 ms
60,032 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 35 ms
26,624 KB
testcase_22 AC 68 ms
49,664 KB
testcase_23 AC 44 ms
31,616 KB
testcase_24 AC 46 ms
33,792 KB
testcase_25 AC 72 ms
52,480 KB
testcase_26 AC 17 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    const int64_t mod = 1000000007;
    int n, d, k;
    cin >> n >> d >> k;
    vector<vector<int64_t>> dp(k + 1, vector<int64_t>(n + 1));
    dp.at(0).at(0) = 1;
    for (int i = 1; i <= k; i++) {
        for (int j = 1; j <= n; j++) {
            dp.at(i).at(j) += dp.at(i - 1).at(j) + dp.at(i - 1).at(j - 1);
            if (i - d - 1 >= 0) {
                dp.at(i).at(j) += mod - dp.at(i - d - 1).at(j - 1);
            }
            dp.at(i).at(j) %= mod;
        }
    }
    cout << dp.at(k).at(n) << endl;
}
0