結果

問題 No.1011 Infinite Stairs
ユーザー iomiriomir
提出日時 2023-03-27 10:24:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 1,682 ms
コンパイル使用メモリ 172,504 KB
実行使用メモリ 215,824 KB
最終ジャッジ日時 2024-09-19 10:08:03
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 14 ms
9,728 KB
testcase_03 AC 288 ms
143,232 KB
testcase_04 AC 448 ms
215,824 KB
testcase_05 AC 454 ms
215,820 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 53 ms
28,288 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 17 ms
10,624 KB
testcase_11 AC 186 ms
91,016 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 99 ms
49,408 KB
testcase_14 AC 9 ms
7,040 KB
testcase_15 AC 68 ms
32,896 KB
testcase_16 AC 304 ms
150,656 KB
testcase_17 AC 343 ms
160,688 KB
testcase_18 AC 132 ms
65,664 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 13 ms
9,088 KB
testcase_21 AC 70 ms
36,992 KB
testcase_22 AC 271 ms
135,852 KB
testcase_23 AC 71 ms
35,208 KB
testcase_24 AC 71 ms
34,304 KB
testcase_25 AC 136 ms
65,228 KB
testcase_26 AC 33 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using vvll = vector<vector<ll>>;
ll mod=1e9+7;

int main(){
    ll N,D,K;
    cin>>N>>D>>K;
    vvll dp(N+1,vll(D*N+3));
    dp[0][0]=1;
    vll rw(D*N+3);
    for(int i=1;i<=N;i++){
        for(int j=0;j<=N*D;j++){
            rw[j+1]=rw[j]+dp[i-1][j];
        }
        for(int j=1;j<=N*D;j++){
            dp[i][j]+=rw[j]-rw[max(0ll,j-D)];
            dp[i][j]%=mod;

            
        }
    }
    cout << dp[N][K] << endl;
}
            
0