結果

問題 No.1011 Infinite Stairs
ユーザー noriocnorioc
提出日時 2020-03-20 23:51:00
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 3,617 ms
コンパイル使用メモリ 175,928 KB
実行使用メモリ 109,116 KB
最終ジャッジ日時 2024-06-22 05:46:18
合計ジャッジ時間 4,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 172 ms
72,676 KB
testcase_04 AC 33 ms
14,648 KB
testcase_05 AC 268 ms
109,116 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 38 ms
18,088 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 23 ms
13,200 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 31 ms
14,768 KB
testcase_16 AC 121 ms
52,168 KB
testcase_17 AC 12 ms
7,096 KB
testcase_18 AC 71 ms
31,624 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 30 ms
14,220 KB
testcase_22 AC 59 ms
27,072 KB
testcase_23 AC 37 ms
16,932 KB
testcase_24 AC 40 ms
18,280 KB
testcase_25 AC 61 ms
28,256 KB
testcase_26 AC 15 ms
7,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

int tle(int n, int d, int k) {
    const MOD = 10^^9 + 7;

    auto dp = new int[][](n + 1, k + 1);
    dp[0][0] = 1;
    for (int i = 1; i <= n; i++) {
        for (int j = 0; j < k; j++) {
            for (int m = 1; m <= d; m++) {
                if (j + m > k) break;

                dp[i][j+m] = (dp[i][j+m] + dp[i-1][j]) % MOD;
            }
        }
    }
    return dp[n][k];
}

int calc(int n, int d, int k) {
    const MOD = 10^^9 + 7;

    auto dp = new int[][](n + 1, k + 1);
    dp[0][0] = 1;

    auto acc = new int[k + 1];
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= k; j++) {
            acc[j] = (acc[j-1] + dp[i-1][j-1]) % MOD;
        }

        for (int j = 1; j <= k; j++) {
            dp[i][j] += acc[j] - acc[max(j - d, 0)];
            dp[i][j] %= MOD;
        }
    }
    return (dp[n][k] + MOD) % MOD;
}

void main() {
    int n, d, k; scan(n, d, k);
    writeln(calc(n, d, k));
}

void scan(T...)(ref T a) {
    string[] ss = readln.split;
    foreach (i, t; T) a[i] = ss[i].to!t;
}
T read(T)() { return readln.chomp.to!T; }
T[] reads(T)() { return readln.split.to!(T[]); }
alias readint = read!int;
alias readints = reads!int;
0