結果
問題 | No.1011 Infinite Stairs |
ユーザー | SAAD AHMAD |
提出日時 | 2024-10-23 23:27:44 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 697 bytes |
コンパイル時間 | 1,141 ms |
コンパイル使用メモリ | 92,148 KB |
実行使用メモリ | 18,688 KB |
最終ジャッジ日時 | 2024-10-23 23:27:51 |
合計ジャッジ時間 | 6,363 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1,005 ms
18,688 KB |
testcase_03 | AC | 342 ms
6,820 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <iostream> #include <map> using namespace std; long long ans = 0; map<pair<int, int>, long long> memo; const long long MOD = 1e9 + 7; long long get(int id, int n, int d, int k) { if (memo.count({id, n})) return memo[{id, n}]; if (n == 0) { return (id == k) ? 1 : 0; } if (id > k + d * n || id < k - d * n) return 0; long long result = 0; for (int i = 1; i <= d; i++) { result =(result+ get(id + i, n - 1, d, k))%MOD; } return memo[{id, n}] = result; } void solve() { int n, d, k; cin >> n >> d >> k; ans = get(0, n, d, k)%MOD; cout << ans << '\n'; } int main() { solve(); return 0; }