結果

問題 No.1011 Infinite Stairs
ユーザー i_mrhji_mrhj
提出日時 2020-03-22 12:42:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,233 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 96,592 KB
実行使用メモリ 439,944 KB
最終ジャッジ日時 2024-07-17 12:01:06
合計ジャッジ時間 6,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 18 ms
11,804 KB
testcase_03 AC 817 ms
305,592 KB
testcase_04 AC 121 ms
52,948 KB
testcase_05 AC 1,233 ms
439,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 12 ms
12,764 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
7,780 KB
testcase_10 AC 10 ms
14,752 KB
testcase_11 AC 149 ms
72,384 KB
testcase_12 AC 9 ms
13,072 KB
testcase_13 AC 100 ms
81,052 KB
testcase_14 AC 4 ms
8,544 KB
testcase_15 AC 121 ms
71,852 KB
testcase_16 AC 528 ms
229,236 KB
testcase_17 AC 45 ms
23,524 KB
testcase_18 AC 292 ms
173,236 KB
testcase_19 AC 8 ms
16,272 KB
testcase_20 AC 5 ms
10,016 KB
testcase_21 AC 129 ms
110,556 KB
testcase_22 AC 237 ms
124,332 KB
testcase_23 AC 157 ms
147,360 KB
testcase_24 AC 162 ms
120,240 KB
testcase_25 AC 249 ms
130,644 KB
testcase_26 AC 62 ms
72,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <climits>
#include <cmath>
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdio>
#include <climits>
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <utility>
#include <queue>
#include <cstring>
#include <set>
#include <map>
#include <complex>
#define rep(i, n) for (int i = 0; i < int(n); i++)
using namespace std;
long long MOD = 1000000007;
long long INF = 1000000000000000; //10^15
typedef long long ll;
typedef unsigned long long ull;


ll powMod(ll x, ll n, ll mod) {
  if (n == 0) return 1;
  ll t = powMod(x, n/2, mod);
  t = t * t % mod;
  if (n & 1) return t * x % mod;
  return t;
}

ll dp[100010][310] = {}, sum[100010][310] = {};

int main(void) {
  
  int n, d, k;
  cin >> n >> d >> k;

  
  dp[0][0] = 1;
  for (int i = 0; i <= k; i++) sum[i][0] = 1;
  for (int x = 1; x <= k; x++) {
    for (int y = 1; y <= min(n, k); y++) {
      dp[x][y] = (sum[x-1][y-1] - (x-d-1<0?0:sum[x-d-1][y-1]))%MOD;
      dp[x][y] = (dp[x][y]+MOD)%MOD;
      sum[x][y] = (sum[x-1][y]+dp[x][y])%MOD;
    }
  }
  cout << dp[k][n] << endl;

  return 0;
}
0