結果

問題 No.1011 Infinite Stairs
ユーザー taklimonetaklimone
提出日時 2020-03-21 15:30:27
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 200,960 KB
実行使用メモリ 110,200 KB
最終ジャッジ日時 2024-07-17 11:59:54
合計ジャッジ時間 3,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 24 ms
93,676 KB
testcase_03 AC 159 ms
104,116 KB
testcase_04 AC 46 ms
110,112 KB
testcase_05 AC 230 ms
110,200 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 14 ms
58,744 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 7 ms
28,160 KB
testcase_11 AC 48 ms
97,908 KB
testcase_12 AC 7 ms
28,024 KB
testcase_13 AC 29 ms
54,688 KB
testcase_14 AC 8 ms
36,320 KB
testcase_15 AC 39 ms
79,312 KB
testcase_16 AC 117 ms
97,972 KB
testcase_17 AC 29 ms
103,792 KB
testcase_18 AC 71 ms
77,244 KB
testcase_19 AC 6 ms
21,868 KB
testcase_20 AC 6 ms
21,860 KB
testcase_21 AC 32 ms
49,068 KB
testcase_22 AC 63 ms
87,616 KB
testcase_23 AC 37 ms
45,104 KB
testcase_24 AC 41 ms
58,964 KB
testcase_25 AC 65 ms
87,800 KB
testcase_26 AC 18 ms
36,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int const mod = 1000000007;
int N,d,K;
int dp[310][90010] = {};
int sum[90010] = {};

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    cin >> N >> d >> K;
    dp[0][1] = 1;
    for(int i=1; i<=N; ++i) {
        for(int j=1; j<=K+1; ++j) sum[j] = (sum[j - 1] + dp[i - 1][j]) % mod;
        for(int j=1; j<=K+1; ++j) {
            dp[i][j] = (sum[j - 1] - sum[max(j - d - 1, 0)]) % mod;
            dp[i][j] = (dp[i][j] + mod) % mod;
        }
    }
    cout << dp[N][K + 1] << '\n';
}
0