結果

問題 No.1011 Infinite Stairs
ユーザー hanyuhanyu
提出日時 2020-04-03 15:14:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 1,611 ms
コンパイル使用メモリ 172,104 KB
実行使用メモリ 215,680 KB
最終ジャッジ日時 2024-07-17 12:04:39
合計ジャッジ時間 3,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 208 ms
143,232 KB
testcase_04 AC 37 ms
26,880 KB
testcase_05 AC 313 ms
215,680 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 43 ms
31,744 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 27 ms
20,608 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 35 ms
25,856 KB
testcase_16 AC 144 ms
100,992 KB
testcase_17 AC 15 ms
11,392 KB
testcase_18 AC 85 ms
59,776 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 35 ms
26,112 KB
testcase_22 AC 70 ms
49,280 KB
testcase_23 AC 43 ms
30,720 KB
testcase_24 AC 46 ms
33,408 KB
testcase_25 AC 75 ms
52,480 KB
testcase_26 AC 17 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
static const ll MOD = 1e9 + 7;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  
  int n, d, k;
  cin >> n >> d >> k;
  
  vector<vector<ll>> dp(n + 1, vector<ll>(k + 1));
  for (int j = 0; j <= k; j++) dp.at(0).at(j) = 1;
  
  for (int i = 1; i <= n; i++) {
    for (int j = 1; j <= k; j++) {
      if (j - 1 - d >= 0) dp.at(i).at(j) = MOD + dp.at(i - 1).at(j - 1) - dp.at(i - 1).at(j - 1 - d);
      else dp.at(i).at(j) = dp.at(i - 1).at(j - 1);
      dp.at(i).at(j) += dp.at(i).at(j - 1);
      dp.at(i).at(j) %= MOD;
    }
  }
  
  cout << (MOD + dp.at(n).at(k) - dp.at(n).at(k - 1)) % MOD << '\n';
}
0