結果

問題 No.1011 Infinite Stairs
ユーザー zero_kprzero_kpr
提出日時 2020-03-22 05:10:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 169,700 KB
実行使用メモリ 215,016 KB
最終ジャッジ日時 2024-07-17 12:00:35
合計ジャッジ時間 3,709 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
7,528 KB
testcase_02 AC 43 ms
181,644 KB
testcase_03 AC 168 ms
204,992 KB
testcase_04 AC 63 ms
212,692 KB
testcase_05 AC 236 ms
215,016 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 24 ms
114,052 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
7,644 KB
testcase_10 AC 12 ms
52,720 KB
testcase_11 AC 64 ms
194,120 KB
testcase_12 AC 12 ms
52,600 KB
testcase_13 AC 36 ms
104,144 KB
testcase_14 AC 14 ms
67,040 KB
testcase_15 AC 51 ms
155,188 KB
testcase_16 AC 128 ms
191,028 KB
testcase_17 AC 48 ms
202,108 KB
testcase_18 AC 81 ms
147,604 KB
testcase_19 AC 10 ms
40,432 KB
testcase_20 AC 9 ms
38,384 KB
testcase_21 AC 41 ms
96,036 KB
testcase_22 AC 75 ms
169,892 KB
testcase_23 AC 44 ms
87,976 KB
testcase_24 AC 50 ms
114,440 KB
testcase_25 AC 78 ms
171,932 KB
testcase_26 AC 23 ms
67,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// AtCoder template
// sabaより胡蝶しのぶさんの方が可愛いのではないか?
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i = 0; i < n; ++i)


ll dp[301][90001];

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    const ll MOD = 1e9 + 7;
    int n,d,k; cin >> n >> d >> k;
    
    dp[0][0] = 1LL;
    rep(i,n){ // i回目の行動
        vector<ll> dpsum(k+2,0LL);
        rep(j,k) dpsum[j+1] = (dpsum[j] + dp[i][j]) % MOD;
        rep(j,k) dp[i+1][j+1] = (dpsum[j+1]-dpsum[max(0,j-d+1)] + MOD) % MOD;
    }
    cout << dp[n][k] << endl;
}
0