結果

問題 No.1011 Infinite Stairs
ユーザー ytftytft
提出日時 2021-04-20 05:04:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 6,531 ms
コンパイル使用メモリ 341,076 KB
実行使用メモリ 215,808 KB
最終ジャッジ日時 2024-07-17 12:18:36
合計ジャッジ時間 9,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 4 ms
6,816 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 220 ms
143,232 KB
testcase_04 AC 39 ms
26,880 KB
testcase_05 AC 335 ms
215,808 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 47 ms
31,744 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 30 ms
20,736 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 39 ms
25,856 KB
testcase_16 AC 157 ms
101,120 KB
testcase_17 AC 15 ms
11,392 KB
testcase_18 AC 93 ms
59,776 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 44 ms
26,240 KB
testcase_22 AC 76 ms
49,280 KB
testcase_23 AC 47 ms
30,976 KB
testcase_24 AC 50 ms
33,536 KB
testcase_25 AC 81 ms
52,608 KB
testcase_26 AC 18 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <boost/multiprecision/cpp_int.hpp>
namespace mp=boost::multiprecision;
int main(){
    long long MOD=1000000007;
    int N,d,K;
    cin>>N>>d>>K;
    vector<vector<long long>> dp(N+1,vector<long long>(K+1,1));
    for(int i=1;i<N+1;++i){
        for(int j=0;j<K+1;++j){
            if(j-d-1>=0){
                dp[i][j]=(dp[i][j-1]+dp[i-1][j-1]-dp[i-1][j-d-1]+MOD)%MOD;
            }else if(j>0){
                dp[i][j]=(dp[i][j-1]+dp[i-1][j-1])%MOD;
            }else{
                dp[i][j]=0;
            }
        }
    }
    cout<<(MOD+dp[N][K]-dp[N][K-1])%MOD<<endl;
}
0