結果

問題 No.1011 Infinite Stairs
ユーザー Taito KutsuzawaTaito Kutsuzawa
提出日時 2020-03-20 22:16:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 662 bytes
コンパイル時間 1,744 ms
コンパイル使用メモリ 167,600 KB
実行使用メモリ 430,080 KB
最終ジャッジ日時 2024-12-15 06:23:20
合計ジャッジ時間 40,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
221,904 KB
testcase_01 AC 57 ms
429,936 KB
testcase_02 AC 69 ms
222,056 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 57 ms
222,004 KB
testcase_07 AC 149 ms
222,004 KB
testcase_08 AC 57 ms
221,812 KB
testcase_09 AC 56 ms
430,000 KB
testcase_10 AC 144 ms
221,988 KB
testcase_11 TLE -
testcase_12 AC 85 ms
221,924 KB
testcase_13 TLE -
testcase_14 AC 64 ms
221,872 KB
testcase_15 AC 783 ms
429,872 KB
testcase_16 TLE -
testcase_17 AC 1,113 ms
215,040 KB
testcase_18 TLE -
testcase_19 AC 66 ms
215,116 KB
testcase_20 AC 95 ms
214,944 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,868 ms
215,068 KB
testcase_25 TLE -
testcase_26 AC 963 ms
429,916 KB
権限があれば一括ダウンロードができます

ソースコード

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