結果

問題 No.1011 Infinite Stairs
ユーザー kappybarkappybar
提出日時 2020-03-29 12:34:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 171,184 KB
実行使用メモリ 109,568 KB
最終ジャッジ日時 2024-07-17 12:04:14
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 227 ms
73,088 KB
testcase_04 AC 40 ms
14,976 KB
testcase_05 AC 347 ms
109,568 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 48 ms
17,536 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 30 ms
11,904 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 38 ms
14,464 KB
testcase_16 AC 161 ms
52,736 KB
testcase_17 AC 15 ms
7,296 KB
testcase_18 AC 93 ms
31,488 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 38 ms
14,592 KB
testcase_22 AC 76 ms
26,240 KB
testcase_23 AC 46 ms
17,024 KB
testcase_24 AC 50 ms
18,176 KB
testcase_25 AC 81 ms
27,520 KB
testcase_26 AC 18 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
const int INF = 1e9;
const int MOD = 1000000007;

 
int main() {
        int n,d,k;
        cin >> n >> d >> k;
        vector<vector<int>> dp(n+1,vector<int>(k+1));
        dp[0][0] = 1;

        for(int i=1;i<=n;i++){
                for(int j=0;j<=k;j++){
                        if(j > 0 && j-d-1 >= 0) dp[i][j] = ((dp[i-1][j-1] + dp[i][j-1])%MOD - dp[i-1][j-d-1] + MOD)%MOD;
                        else if(j > 0) dp[i][j] = (dp[i-1][j-1] + dp[i][j-1])%MOD;
                        else  dp[i][j] = 0;
                }
        }

        cout << dp[n][k] << endl;
        return 0;
}



0