結果

問題 No.1011 Infinite Stairs
ユーザー erbowlerbowl
提出日時 2020-04-29 13:39:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 205,236 KB
実行使用メモリ 432,128 KB
最終ジャッジ日時 2024-07-17 12:06:31
合計ジャッジ時間 5,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 9 ms
9,344 KB
testcase_03 AC 319 ms
285,312 KB
testcase_04 AC 52 ms
50,944 KB
testcase_05 AC 484 ms
432,128 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 64 ms
61,056 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 42 ms
38,912 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 53 ms
49,280 KB
testcase_16 AC 221 ms
201,344 KB
testcase_17 AC 20 ms
20,096 KB
testcase_18 AC 127 ms
116,992 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 52 ms
50,048 KB
testcase_22 AC 103 ms
96,256 KB
testcase_23 AC 67 ms
60,160 KB
testcase_24 AC 70 ms
64,256 KB
testcase_25 AC 110 ms
101,760 KB
testcase_26 AC 26 ms
23,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;

int main() {
    ll n,d,k;
    std::cin >> n>>d>>k;
    
    vector<vector<ll>> dp(k+2,vector<ll>(n+1,0));
    vector<vector<ll>> sum(k+2,vector<ll>(n+1,0));
    dp[0][0] = 1;
    sum[1][0]= 1;
    for (int i = 1; i <= k; i++) {
        sum[i+1][0] = sum[i][0];
    }
    
    for (int i = 0; i < k; i++) {
        for (int j = 0; j < n; j++) {
            dp[i+1][j+1] = sum[i+1][j]-sum[max(0ll,i-(d-1))][j]+(ll)1e9+7;
            dp[i+1][j+1] %= (ll)1e9+7;
            sum[i+2][j+1]= sum[i+1][j+1]+dp[i+1][j+1];
            sum[i+2][j+1]%= (ll)1e9+7;
        }
    }

    std::cout << dp[k][n] << std::endl;
}

0