結果
問題 | No.1011 Infinite Stairs |
ユーザー | merom686 |
提出日時 | 2020-03-20 21:53:00 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 83 ms / 2,000 ms |
コード長 | 763 bytes |
コンパイル時間 | 613 ms |
コンパイル使用メモリ | 74,220 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-17 11:48:03 |
合計ジャッジ時間 | 1,752 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; constexpr int P = 1000000007; int main() { int n, d, k; cin >> n >> d >> k; int dp[90001] = {}; dp[0] = 1; for (int i = 0; i < n; i++) { ll t = 0; for (int j = k; j >= 0; j--) { if (j == k) { for (int h = max(j - d, 0); h < j; h++) { t += dp[h]; } } else { t -= dp[j]; if (j - d >= 0) t += dp[j - d]; } dp[j] = t % P; if (dp[j] < 0) dp[j] += P; } } cout << dp[k] << endl; return 0; }