結果

問題 No.1011 Infinite Stairs
ユーザー snrnsidysnrnsidy
提出日時 2021-10-28 13:33:08
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 201,040 KB
実行使用メモリ 215,816 KB
最終ジャッジ日時 2024-10-07 07:59:18
合計ジャッジ時間 6,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
215,680 KB
testcase_01 AC 61 ms
215,816 KB
testcase_02 AC 74 ms
215,772 KB
testcase_03 AC 291 ms
215,712 KB
testcase_04 AC 106 ms
215,812 KB
testcase_05 AC 450 ms
215,748 KB
testcase_06 AC 57 ms
215,736 KB
testcase_07 AC 61 ms
215,772 KB
testcase_08 AC 56 ms
215,772 KB
testcase_09 AC 56 ms
215,644 KB
testcase_10 AC 59 ms
215,708 KB
testcase_11 AC 110 ms
215,724 KB
testcase_12 AC 58 ms
215,740 KB
testcase_13 AC 86 ms
215,744 KB
testcase_14 AC 58 ms
215,728 KB
testcase_15 AC 97 ms
215,640 KB
testcase_16 AC 216 ms
215,752 KB
testcase_17 AC 76 ms
215,728 KB
testcase_18 AC 152 ms
215,656 KB
testcase_19 AC 61 ms
215,776 KB
testcase_20 AC 59 ms
215,644 KB
testcase_21 AC 95 ms
215,644 KB
testcase_22 AC 136 ms
215,768 KB
testcase_23 AC 104 ms
215,644 KB
testcase_24 AC 107 ms
215,640 KB
testcase_25 AC 141 ms
215,640 KB
testcase_26 AC 75 ms
215,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const long long int MOD = 1e9 + 7;
long long int dp[301][90001];
long long int psum[90001];

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

    int n,d,k;

    cin >> n >> d >> k;

    memset(dp,0,sizeof(dp));

    dp[0][0] = 1;
    for(int i=0;i<n;i++)
    {
        memset(psum,0,sizeof(psum));
        psum[0] = dp[i][0];
        for(int j=1;j<=k;j++)
        {
            psum[j] += psum[j-1];
            psum[j]%=MOD;
            psum[j] += dp[i][j];
            psum[j]%=MOD;
        }

        for(int j=1;j<=k;j++)
        {
            long long int val = psum[j-1];
            if(j-1-d >= 0)
            {
                val -= psum[j-1-d];
                val%=MOD;
                if(val < 0) val += MOD;
            }
            dp[i+1][j] += val;
            dp[i+1][j]%=MOD;
        } 
    }

    cout << dp[n][k] << '\n';
    return 0;
}
0