結果
問題 | No.1011 Infinite Stairs |
ユーザー | siman |
提出日時 | 2021-03-03 16:26:21 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 830 bytes |
コンパイル時間 | 1,900 ms |
コンパイル使用メモリ | 142,060 KB |
実行使用メモリ | 236,252 KB |
最終ジャッジ日時 | 2024-10-03 05:47:16 |
合計ジャッジ時間 | 5,549 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
236,024 KB |
testcase_01 | AC | 59 ms
236,096 KB |
testcase_02 | AC | 62 ms
236,128 KB |
testcase_03 | AC | 145 ms
236,212 KB |
testcase_04 | AC | 188 ms
236,160 KB |
testcase_05 | WA | - |
testcase_06 | AC | 58 ms
236,108 KB |
testcase_07 | AC | 76 ms
236,080 KB |
testcase_08 | AC | 59 ms
236,048 KB |
testcase_09 | AC | 58 ms
236,048 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 86 ms
236,024 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 59 ms
236,068 KB |
testcase_20 | AC | 60 ms
236,068 KB |
testcase_21 | AC | 78 ms
236,044 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 101 ms
236,060 KB |
testcase_26 | AC | 70 ms
236,056 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <limits.h> #include <map> #include <queue> #include <set> #include <string.h> #include <vector> using namespace std; typedef long long ll; const ll MOD = 1000000007; ll dp[310][310 * 310]; int main() { int N, D, K; cin >> N >> D >> K; memset(dp, 0, sizeof(dp)); dp[0][1] = 1; dp[0][D + 1] = -1; for (int i = 0; i < N - 1; ++i) { ll sum = 0; ll rui = 0; for (int j = 0; j < D * N; ++j) { rui = (rui + dp[i][j]) % MOD; dp[i + 1][j + 1] += rui; if (j + D + 1 <= D * N) dp[i + 1][j + D + 1] -= rui; } } ll ans = 0; ll rui = 0; for (int j = 0; j <= K; ++j) { rui = (rui + dp[N - 1][j]) % MOD; ans = (ans + rui) % MOD; } cout << rui << endl; return 0; }