結果

問題 No.1011 Infinite Stairs
ユーザー Taito KutsuzawaTaito Kutsuzawa
提出日時 2020-03-20 22:16:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 662 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 166,028 KB
実行使用メモリ 220,544 KB
最終ジャッジ日時 2024-05-08 22:27:13
合計ジャッジ時間 5,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
220,544 KB
testcase_01 AC 159 ms
215,040 KB
testcase_02 AC 173 ms
215,168 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int N,d,K;
long long dp[90001][301];
long long const MOD = 1000000007;

long long f(int x, int r) {
    if(dp[x][r] != -1) {
        return dp[x][r];
    } else {
        long long ret = 0;
        for(int j=1; j<=d; ++j) {
            if(x - j < 0) break;
            ret = (ret + f(x - j, r - 1)) % MOD;
        }
        return dp[x][r] = ret;
    }
}

int main() {
    cin >> N >> d >> K;
    for(int i=0; i<90001; ++i) {
        for(int j=0; j<301; ++j) dp[i][j] = -1;
    }
    dp[0][0] = 1;
    for(int j=1; j<301; ++j) dp[0][j] = 0;
    for(int i=1; i<90001; ++i) dp[i][0] = 0;
    cout << f(K, N) << '\n';
}
0