結果

問題 No.1011 Infinite Stairs
ユーザー Manuel1024Manuel1024
提出日時 2022-12-12 02:34:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 247,040 KB
最終ジャッジ日時 2024-11-06 02:49:09
合計ジャッジ時間 7,942 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
14,208 KB
testcase_01 AC 17 ms
16,512 KB
testcase_02 AC 385 ms
212,480 KB
testcase_03 AC 419 ms
235,264 KB
testcase_04 AC 442 ms
247,040 KB
testcase_05 AC 443 ms
247,040 KB
testcase_06 AC 9 ms
12,672 KB
testcase_07 AC 240 ms
136,448 KB
testcase_08 AC 9 ms
12,672 KB
testcase_09 AC 14 ms
14,976 KB
testcase_10 AC 110 ms
66,688 KB
testcase_11 AC 400 ms
222,720 KB
testcase_12 AC 106 ms
65,920 KB
testcase_13 AC 214 ms
124,672 KB
testcase_14 AC 137 ms
82,560 KB
testcase_15 AC 319 ms
181,248 KB
testcase_16 AC 395 ms
221,184 KB
testcase_17 AC 418 ms
233,600 KB
testcase_18 AC 307 ms
173,312 KB
testcase_19 AC 84 ms
52,736 KB
testcase_20 AC 81 ms
51,840 KB
testcase_21 AC 198 ms
115,456 KB
testcase_22 AC 356 ms
198,528 KB
testcase_23 AC 181 ms
105,088 KB
testcase_24 AC 237 ms
136,576 KB
testcase_25 AC 357 ms
199,936 KB
testcase_26 AC 140 ms
83,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;
constexpr ll MOD = 1'000'000'007;

int main(){
    int n, d, k; cin >> n >> d >> k;
    vector<vector<ll>> dp(n+10, vector<ll>(100010, 0));
    dp[0][0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j < 100000; j++){
            dp[i+1][j+1] += dp[i][j];
            dp[i+1][j+1] %= MOD;
            dp[i+1][min(j+d+1, 100005)] -= dp[i][j];
            dp[i+1][min(j+d+1, 100005)] += MOD;
            dp[i+1][min(j+d+1, 100005)] %= MOD;
        }
        for(int j = 0; j < 100000; j++){
            dp[i+1][j+1] += dp[i+1][j];
            dp[i+1][j+1] %= MOD;
        }
    }
    cout << dp[n][k] << endl;
    return 0;
}
0