結果
| 問題 | No.1011 Infinite Stairs |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-03 00:37:24 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 619 bytes |
| 記録 | |
| コンパイル時間 | 634 ms |
| コンパイル使用メモリ | 120,576 KB |
| 実行使用メモリ | 217,216 KB |
| 最終ジャッジ日時 | 2024-11-30 18:16:47 |
| 合計ジャッジ時間 | 2,365 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 WA * 12 |
ソースコード
#include <iostream>
#include <vector>
using namespace std;
using int64 = long long;
const int MOD = 1000000007;
int main() {
int n,d,k;
cin >> n >> d >> k;
vector<vector<int64>> dp(n+1, vector<int64>(k+d+1, 0LL));
dp[0][0] = 1;
for (int i=0; i<n; i++) {
for (int j=i; j<(i+2)*d; j++) {
if (k - j <= 0) continue;
dp[i+1][j+1] += dp[i][j];
dp[i+1][j+1+d] -= dp[i][j];
dp[i+1][j+1] += dp[i+1][j];
dp[i+1][j+1] %= MOD;
}
}
cout << dp[n][k] << endl;
}
/*
* 1 0 0 0
* 0 1 1 0
* 0 0 1 2 1 0
* 0 0 0 1 3 3 1
*/