結果

問題 No.1011 Infinite Stairs
ユーザー NOSSNOSS
提出日時 2020-03-20 21:45:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 172,700 KB
実行使用メモリ 217,680 KB
最終ジャッジ日時 2024-07-17 11:47:32
合計ジャッジ時間 4,572 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 399 ms
144,256 KB
testcase_04 AC 56 ms
27,132 KB
testcase_05 AC 608 ms
217,680 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 62 ms
32,128 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 38 ms
21,124 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 49 ms
26,112 KB
testcase_16 AC 251 ms
102,272 KB
testcase_17 AC 15 ms
11,776 KB
testcase_18 AC 139 ms
60,032 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 53 ms
26,624 KB
testcase_22 AC 113 ms
49,664 KB
testcase_23 AC 68 ms
31,616 KB
testcase_24 AC 70 ms
33,920 KB
testcase_25 AC 117 ms
52,480 KB
testcase_26 AC 22 ms
13,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long int;
using ull = unsigned long long int;
using P = pair<int, int>;
using P3 = pair<double,P>;
using PP = pair<P, P>;
constexpr int INF = 1 << 30;
constexpr ll MOD = ll(1e9)+7;

int main(){
    int N, D, K;
    cin >> N >> D >> K;
    vector<vector<ll> > dp(K+1, vector<ll>(N+1));
    for(int i=0;i<=K;i++){
        dp[i][0] = 1;
    }
    for(int j=0;j<N;j++){
        for(int i=0;i<K;i++){
            if(i < D){
                dp[i+1][j+1] = (dp[i][j] + dp[i][j+1]) % MOD;
            }else{
                dp[i+1][j+1] = (dp[i][j] - dp[i-D][j] + dp[i][j+1] + MOD) % MOD;
            }
        }
    }
    cout << (dp[K][N]-dp[K-1][N]+MOD)%MOD << endl;
    return 0;
}
0