結果

問題 No.1011 Infinite Stairs
ユーザー rxoxixyxdrxoxixyxd
提出日時 2020-03-21 16:55:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 1,229 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 167,204 KB
実行使用メモリ 426,516 KB
最終ジャッジ日時 2024-07-17 12:00:03
合計ジャッジ時間 4,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,628 KB
testcase_01 AC 4 ms
9,684 KB
testcase_02 AC 48 ms
121,392 KB
testcase_03 AC 183 ms
317,216 KB
testcase_04 AC 85 ms
152,600 KB
testcase_05 AC 239 ms
426,516 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 29 ms
118,332 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
7,628 KB
testcase_10 AC 15 ms
55,852 KB
testcase_11 AC 77 ms
158,060 KB
testcase_12 AC 14 ms
55,716 KB
testcase_13 AC 49 ms
132,804 KB
testcase_14 AC 16 ms
67,488 KB
testcase_15 AC 62 ms
147,796 KB
testcase_16 AC 158 ms
254,232 KB
testcase_17 AC 42 ms
131,476 KB
testcase_18 AC 107 ms
186,400 KB
testcase_19 AC 12 ms
43,544 KB
testcase_20 AC 11 ms
40,892 KB
testcase_21 AC 57 ms
136,708 KB
testcase_22 AC 105 ms
178,840 KB
testcase_23 AC 57 ms
135,292 KB
testcase_24 AC 69 ms
148,180 KB
testcase_25 AC 107 ms
183,952 KB
testcase_26 AC 31 ms
89,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < n; ++i)
#define ALL(c) (c).begin(), (c).end()
#define SUM(x) std::accumulate(ALL(x), 0LL)
#define MIN(v) *std::min_element(v.begin(), v.end())
#define MAX(v) *std::max_element(v.begin(), v.end())
#define EXIST(v, x) (std::find(v.begin(), v.end(), x) != v.end())
using namespace std;

typedef long long ll;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
const int INF = 1e9;
const long long INFL = 1LL<<60;

const int mod = 1000000007;

ll dp[305][90005];  // i 回移動を行ったときにj段目にいる場合の数
ll sum[305][90005];

int main()
{
  int N, D, K;
  cin >> N >> D >> K;

  dp[0][0] = 1;
  sum[0][0] = 1;

  for (int i = 0; i < N; i++) {
    for (int j = 0; j <= K; j++) {
      if (j - D > 0) dp[i+1][j] = (sum[i][j] - sum[i][j-D]) % mod;
      else dp[i+1][j] = (sum[i][j] - sum[i][0]) % mod;
      sum[i][j+1] = sum[i][j] + dp[i][j];
    }
  }
/*
  rep(i, n+1) {
    rep(j, n*d + 1) {
      cerr << dp[i][j] << " ";
    }
    cerr << endl;
  }
*/
  cout << dp[N][K] << endl;

  return 0;
}
0