結果

問題 No.1011 Infinite Stairs
ユーザー hipotafhipotaf
提出日時 2020-06-06 02:58:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,185 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 70,532 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-12-21 08:35:38
合計ジャッジ時間 48,047 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
11,044 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
13,636 KB
testcase_07 WA -
testcase_08 AC 2 ms
13,632 KB
testcase_09 AC 3 ms
10,272 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <numeric>

using namespace std;

using ll = long long;

template <class T>
using grid = vector<vector<T>>;

#define REP(i,n) for(ll i=0;i<(ll)(n);i++)
#define REPD(i,n) for(ll i=n-1;i>=0;i--)
#define FOR(i,a,b) for(ll i=a;i<=(ll)(b);i++)
#define FORD(i,a,b) for(ll i=a;i>=(ll)(b);i--)

#define input(...) __VA_ARGS__; in(__VA_ARGS__)

void print() {
  std::cout << std::endl;
}

template <class Head, class... Tail>
void print(Head&& head, Tail&&... tail) {
  std::cout << head << " ";
  print(std::forward<Tail>(tail)...);
}

void in() { }

template <class Head, class... Tail>
void in(Head&& head, Tail&&... tail) {
  cin >> head;
  in(std::forward<Tail>(tail)...);
}

int main() {
  int input(N, d, K);

  vector<ll> dp(K + 1);
  REP(k, K + 1) { // n == 1 の時
    if (k <= 0) dp[k] = 0;
    else dp[k] = (int) k <= d;
  }

  vector<ll> cumsum(K + 1);
  REP(n, N - 1) { // [0, N - 1)
    FORD(k, K, 1) { // [K, 1]
      partial_sum(dp.begin(), dp.end(), cumsum.begin());
      dp[k] = cumsum[k - 1] - cumsum[max(1ll, k - d) - 1];
      // cumsum[a] - cumsum[b - 1] = sum(dp[b] ~ dp[a])
    }
  }

  print(dp[K]);
}
0