結果
問題 | No.1011 Infinite Stairs |
ユーザー | Ilag |
提出日時 | 2020-03-20 22:11:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 1,497 ms |
コンパイル使用メモリ | 166,164 KB |
実行使用メモリ | 237,824 KB |
最終ジャッジ日時 | 2024-05-08 22:18:53 |
合計ジャッジ時間 | 8,127 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
5,760 KB |
testcase_01 | AC | 10 ms
8,192 KB |
testcase_02 | AC | 369 ms
203,520 KB |
testcase_03 | AC | 410 ms
226,176 KB |
testcase_04 | AC | 436 ms
237,696 KB |
testcase_05 | WA | - |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 230 ms
127,744 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 8 ms
6,656 KB |
testcase_10 | WA | - |
testcase_11 | AC | 384 ms
213,632 KB |
testcase_12 | WA | - |
testcase_13 | AC | 210 ms
115,840 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 76 ms
44,160 KB |
testcase_20 | AC | 75 ms
43,264 KB |
testcase_21 | AC | 189 ms
106,752 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 132 ms
74,624 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using P = pair<int, int>; using PL = pair<ll, ll>; // Welcome to my source code! const int MOD = 1000000007; const int MAX_V = 100000; const int MAX_N = 305; ll dp[MAX_N + 1][MAX_V + 1]; int main() { ll n, d, k; cin >> n >> d >> k; dp[0][0] = 1; for (int i = 0; i < n; i++) { for (int j = i + 1; j <= MAX_V; j++) { dp[i + 1][j] += dp[i][j - 1]; if (j - d - 1 >= 0) dp[i + 1][j] -= dp[i][j - d - 1]; dp[i + 1][j] %= MOD; } for (int j = 1; j <= MAX_V; j++) { dp[i + 1][j] += dp[i + 1][j - 1]; dp[i + 1][j] %= MOD; } } cout << dp[n][k] << endl; }