結果

問題 No.1011 Infinite Stairs
ユーザー recososorecososo
提出日時 2020-04-12 15:13:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 1,704 ms
コンパイル使用メモリ 172,756 KB
実行使用メモリ 427,556 KB
最終ジャッジ日時 2024-07-17 12:05:27
合計ジャッジ時間 4,552 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 9 ms
8,960 KB
testcase_03 AC 347 ms
281,744 KB
testcase_04 AC 62 ms
50,176 KB
testcase_05 AC 521 ms
427,556 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 6 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,940 KB
testcase_11 AC 71 ms
60,160 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 45 ms
38,016 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 58 ms
48,384 KB
testcase_16 AC 245 ms
198,384 KB
testcase_17 AC 23 ms
19,456 KB
testcase_18 AC 143 ms
115,664 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 59 ms
49,024 KB
testcase_22 AC 117 ms
95,104 KB
testcase_23 AC 71 ms
58,052 KB
testcase_24 AC 77 ms
63,068 KB
testcase_25 AC 125 ms
100,980 KB
testcase_26 AC 27 ms
23,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
const ll INF=1LL<<60;
const int inf=1<<30;
const int mod=1e9+7;
int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n,d,k;cin >> n >> d >> k;
    vector<vector<ll>> dp(n+1,vector<ll>(k+1)),ds(n+1,vector<ll>(k+1));
    dp[0][0]=1;
    for(int i=0;i<=k;i++){
        ds[0][i]=1;
    }
    for(int i=0;i<n;i++){
        for(int j=1;j<=k;j++){
            if(j-d-1>=0){
                (dp[i+1][j]+=(ds[i][j-1]-ds[i][j-d-1]+mod)%mod)%=mod;
            }
            else{
                (dp[i+1][j]+=ds[i][j-1])%=mod;
            }
        }
        for(int j=1;j<=k;j++){
            ds[i+1][j]=(ds[i+1][j-1]+dp[i+1][j])%mod;
        }
    }
    cout << dp[n][k] << endl;
}
0