結果

問題 No.1011 Infinite Stairs
ユーザー uw_yu1rabbituw_yu1rabbit
提出日時 2020-08-25 17:37:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 879 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 80,812 KB
実行使用メモリ 150,048 KB
最終ジャッジ日時 2024-11-06 11:33:04
合計ジャッジ時間 4,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<iostream>
#include<vector>
using namespace std;
using i32 = int_fast32_t;
using i64 = int_fast64_t;
#define rep(i, n) for (i32 i = 0; i < (i32)(n); i++)
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
using P = pair<i64,i64>;
constexpr i64 MAX = 10000000;
constexpr i64 MOD = 1000000007;

int main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
i64 n,d,k;
cin >> n >> d >> k;
vector<vector<i64>> dp(n + 1,vector<i64> (k + 1,0));
dp[0][0] = 1;
rep(i,n){
    rep(j,k){
        if(dp[i][j] != 0){
            for(i64 l = 1; l < d + 1; l++){
                if(j + l <= k){
                    dp[i + 1][j + l] += dp[i][j];
                    dp[i + 1][j + l] %= MOD;
                }
            }
        }
    }
}
cout << dp[n][k] << endl;
}
0